Socket
Socket
Sign inDemoInstall

@barnardoswebteam/consent-banner

Package Overview
Dependencies
0
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @barnardoswebteam/consent-banner

Barnardo's consent banner.


Version published
Weekly downloads
132
decreased by-22.35%
Maintainers
1
Install size
36.4 kB
Created
Weekly downloads
 

Readme

Source

Usage

Option 1: npm install / yarn add

Run npm install @barnardoswebteam/consent-banner or yarn add @barnardoswebteam/consent-banner.

In your code add the following:

const consentBanner = require('@barnardoswebteam/consent-banner');
consentBanner();

And add the GTM container ID in .env or as a config variable as GTM_CODE.

Optionally add URLs for your privacy policy and cookie policy in .env as PRIVACY_URL and COOKIE_URL. If no privacy URL is declared it defaults to https://www.barnardos.org.uk/privacy-notice, and if no cookie URL is declared it defaults to https://www.barnardos.org.uk/cookie-notice.

Option 2: ESM

In your HTML add the following:

<script type="module" src="main.js"></script>

and in main.js:

import consentBanner from './path/to/consent-banner.esm.js';
consentBanner();

And add the GTM container ID in .env or as a config variable as GTM_CODE.

Optionally add URLs for your privacy policy and cookie policy in .env as PRIVACY_URL and COOKIE_URL. If no privacy URL is declared it defaults to https://www.barnardos.org.uk/privacy-notice, and if no cookie URL is declared it defaults to https://www.barnardos.org.uk/cookie-notice.

Option 3: script element in HTML

Put the following near the end of the body element, replacing GTM-XXXXXX with the correct ID.

<script src="path/to/consent-banner.es5.js"></script>
<script>BarnardosConsent({'gtmCode':'GTM-XXXXXX'});</script>

Self hosting is recommended but if it's not possible you can use:

<script src="https://unpkg.com/@barnardoswebteam/consent-banner@latest/consent-banner.es5.js"></script>
<script>BarnardosConsent({'gtmCode':'GTM-XXXXXX'});</script>

Optionally add URLs for your privacy policy and cookie policy to the code like so:

<script>
BarnardosConsent(
  {
    'gtmCode': 'GTM-XXXXXX',
    'privacyURL': 'https://your-domain/privacy-policy',
    'cookieURL': 'https://your-domain/cookie-policy'
  }
);
</script>

Both are optional, and if either it missing they will default to https://www.barnardos.org.uk/privacy-notice and https://www.barnardos.org.uk/cookie-notice respectively.

Updating

Cloning this repo as a git submodule is recommended if not using NPM or Yarn. Watch this repository and run git pull from inside the submodule directory when there are changes. Otherwise watch this repository and perform manual updates.

Steps for creating a git submodule:

  1. cd to the directory the submodule will live.
  2. Type git submodule add -b main git@github.com:barnardos/consent-banner.git and press enter to add the submodule.
  3. Type git submodule init and press enter.
  4. cd out of the submodule into the parent repository.
  5. Add and commit the new files to the parent repository.

Keywords

FAQs

Last updated on 04 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc