Browser Core module to be used by Mailbiz Browser based trackers.
It should rarely be used alone, you probably want @mailbiz/browser-tracker
.
Part of the Mailbiz JavaScript Tracker monorepo.
Build with Node.js (12 LTS or 14 LTS) and Rush.
npm install -g @microsoft/rush
git clone https://github.com/Mailbiz/Mailbiz.Tracker.Javascript.git
rush update
cd libraries/browser-tracker-core
rushx build
rushx test
With npm:
npm install @mailbiz/browser-tracker-core
import { addTracker, createSharedState, getTracker } from '@mailbiz/browser-tracker-core';
const sharedState = createSharedState();
const tracker = addTracker('snowplow_sp1', 'sp1', 'js-3.0.0', '{{collector}}', sharedState, {}); // Also stores reference at module level
const sameTracker = getTracker('snowplow_sp1');
const domainUserId = tracker.getDomainUserId();
This package contains a number of helper functions for tracking events in the browser as well as the core functionality of the Mailbiz JavaScript Tracker.
Licensed and distributed under the BSD 3-Clause License (An OSI Approved License).
Copyright (c) 2022 Mailbiz.
All rights reserved.