Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@halloverden/ngx-cookiebot
Advanced tools
An Angular wrapper around the Cookiebot SDK.
Version | Angular support |
---|---|
^6.0.0 | ^19.0.0 |
^5.0.0 | ^18.0.0 |
^4.0.0 | ^17.0.0 |
^3.0.0 | ^16.0.0 |
2.3.0 | 8.2.14 - 15 |
npm i @halloverden/ngx-cookiebot -S
A Cookiebot account.
Configure the service according to the Cookiebot developer docs. The package also ships with custom config not defined in the Cookiebot developer docs. See below for deets.
// cookiebot.config.ts
import { NgxCookiebotConfig } from '@halloverden/ngx-cookiebot';
export class CookiebotConfig extends NgxCookiebotConfig {
blockingMode: 'auto' | 'manual' | string;
consentMode?: 'disabled';
cbId: string;
cdn: 'com' | 'eu' | string;
culture?: string;
framework?: string;
level?: string;
loadScript: boolean;
type?: string;
widgetEnabled?: boolean;
widgetPosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | string;
widgetDistanceVertical?: number;
widgetDistanceHorizontal?: number;
}
In addition to the config defined in the Cookiebot developer docs, the package also supports this custom config:
Choose what version of the cookiebot CDN you want to use (https://support.cookiebot.com/hc/en-us/articles/4530208762396-Cookiebot-CMP-European-CDN-solution):
Config | CDN |
---|---|
com | consent.cookiebot.com |
eu | consent.cookiebot.eu |
The package injects the script in the head tag through Angular. This can lead to high script loading time. If your app is time sensitive, you can opt out of the package setting the script tag, and set it yourself. You can use the module for everything else but the script embedding.
NB! If you set this config to false, no other config parameter will have effect, and you need to config them yourself.
// app.config.ts
import { ngxCookiebotProvider } from '@halloverden/ngx-cookiebot';
import { CookiebotConfig } from '@config/cookiebot.config';
ngxCookiebotProvider(CookiebotConfig);
The script will now automatically append itself to the head
tag, which in turn will prompt the cookie consent box.
To interact with the "cookiebot" object, NgxCookiebot comes with a service that exposes it, which is ready for use after the service is ready (the script is injected):
// whatever.ts
...
#cookiebotService = inject(NgxCookiebotService);
...
this.#cookiebotService.onServiceReady$.pipe(
filter((ready: boolean) => {
return ready;
})
).subscribe(() => {
// this.#cookiebotService.cookiebot is available
});
...
Reference the Cookiebot docs for a list of properties, methods and callbacks available through the cookiebot object.
If you prefer to use observables, the NgxCookiebotService exposes an observable for every available method and callback on the cookiebot object:
Method | Observable |
---|---|
CookiebotOnConsentReady | onConsentReady$ |
CookiebotOnLoad | onLoad$ |
CookiebotOnAccept | onAccept$ |
CookiebotOnDecline | onDecline$ |
CookiebotOnDialogInit | onDialogInit$ |
CookiebotOnDialogDisplay | onDialogDisplay$ |
CookiebotOnTagsExecuted | onTagsExecuted$ |
Callback | Observable |
---|---|
CookiebotCallback_OnLoad | onLoadCallback$ |
CookiebotCallback_OnAccept | onAcceptCallback$ |
CookiebotCallback_OnDecline | onDeclineCallback$ |
CookiebotCallback_OnDialogInit | onDialogInitCallback$ |
CookiebotCallback_OnDialogDisplay | onDialogDisplayCallback$ |
CookiebotCallback_OnTagsExecuted | onTagsExecutedCallback$ |
Usage example:
// whatever.ts
...
this.#cookiebotService.onConsentReady$.subscribe(
// Consent ready
console.log(this.#cookiebotService.cookiebot.consent)
);
...
The NgxCookiebot package exposes a component to insert the cookie consent declaration. Use the component where you want the declaration to appear:
// my.component.html
<ngx-cookiebot-declaration></ngx-cookiebot-declaration>
MIT © Hallo Verden
FAQs
A simple Angular wrapper for the Cookiebot SDK
The npm package @halloverden/ngx-cookiebot receives a total of 935 weekly downloads. As such, @halloverden/ngx-cookiebot popularity was classified as not popular.
We found that @halloverden/ngx-cookiebot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.