1.3.1 • Published 3 years ago

js-cookie-consent v1.3.1

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

js-cookie-consent

JS Cookie Consent is a JavaScript library for showing cookie consent notice on your webiste.

From version 1.3.0 you will have to manually include css stylings like in the provided description.

How to use it:

You can get the library via npm

npm install js-cookie-consent

import cookieConsent from 'js-cookie-consent'
import 'js-cookie-consent/dist/css/styles.css'

cookieConsent({
  cookieName: 'cookiesGDPR',
  message: 'We use 🍪 to provide you with the...',
  options: [
    {
      title: 'Essential cookies',
      description: 'These cookies are strictly necessary to provide you...',
      key: 'essential',
      disabled: true,
      checked: true
    },
    {
      title: 'Marketing personalisation / retargeting cookies',
      description: 'These cookies and pixels are used to make advertising...',
      key: 'marketing',
      disabled: false,
      checked: false
    },
    {
      title: 'Marketing analytics cookies',
      description: 'These cookies collect information that is...',
      key: 'analytics',
      disabled: false,
      checked: false
    }
  ],
  learnMore: 'https://www.cookie.com/gdpr',
  expiration: 7,
  color: '#6666ff'
});
Params
keyvaluetyperequred
cookieNamename of the cookie that is going to be savedstringtrue
messagemain message that is going to be displayed in the cookiestringtrue
optionsarray of toggle checkboxes and textarraytrue
optionstitleheadline of the toggle boxstringtrue
optionsdescriptiondescription of the toggle boxstringtrue
optionskeykey value that will be stored in cookieName arraystringtrue
optionsdisabledis toggle disabled and cannot be clickedbooltrue
optionscheckedis toggle checked by defaultbooltrue
learnMorelink to your cookie info pagestringoptional
expirationnumber of days to save the cookienumbertrue
colorcolor of the buttons and toggle checkboxesstring (text, hex,rgb,rgba)optional
1.3.1

3 years ago

1.3.0

3 years ago

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.1.2

4 years ago

1.0.9

4 years ago

1.0.10

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago