1.5.6-3 • Published 6 months ago

@cookiehub/iabtcf-stub v1.5.6-3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
6 months ago

NPM version npm module downloads per month InteractiveAdvertisingBureau

@cookiehub/iabtcf-stub

Cmp API Stub code. Maybe included in commonjs loader or dropped directly on the page.

Installation

npm

npm install @cookiehub/iabtcf-stub

yarn

yarn add @cookiehub/iabtcf-stub

Using

include via module loading
import * as cmpstub from '@cookiehub/iabtcf-stub';

or

const cmpstub = require('@cookiehub/iabtcf-stub');

then execute:

cmpstub();

this should generate the __tcfapi() window function with the queing functionality.

to drop on a page
git clone https://github.com/InteractiveAdvertisingBureau/iabtcf-es.git

cd iabtcf-es/modules/stub/

yarn // or npm install

yarn build // or npm run build

Built stub will be output to ./lib

Getting queue of commands
const queue = __tcfapi();
console.log(queue); // [ ['command', 2, callback], ...]