lightweight and simple gdpr solution
npm install simple-gdprFull documentation and demo can be found here.
SimpleGDPR is a lightweight and easy-to-use GDPR consent plugin. It features:
- Simple API
- Built in themes
- Customizable via CSS
- Mobile ready
- No dependencies
npm install simple-gdprimport SimpleGDPR from 'simple-gdpr';
`Basic Usage:
`
const notice = new SimpleGDPR({
title: 'We use cookies!',
callback: () => {
analytics.start();
notice.close();
},
link: 'privacypolicy.html',
}
``View the docs for details on all of the options you can supply to customize tooltips to suit your needs.