
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@mailbiz/browser-tracker
Advanced tools
Add Mailbiz Tracking to your Web Application with @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
With npm:
npm install @mailbiz/browser-tracker
Initialize your tracker with your desired configuration and optional plugins:
import { newTracker } from '@mailbiz/browser-tracker';
import { SiteTrackingPlugin } from '@mailbiz/browser-plugin-site-tracking';
import { PerformanceTimingPlugin } from '@mailbiz/browser-plugin-performance-timing';
import { ClientHintsPlugin } from '@mailbiz/browser-plugin-client-hints';
import { FormTrackingPlugin, enableFormTracking } from '@mailbiz/browser-plugin-form-tracking';
newTracker('sp1', '{{collector}}', { plugins: [ PerformanceTimingPlugin(), SiteTrackingPlugin(), ClientHintsPlugin(), FormTrackingPlugin() ] }); // Also stores reference at module level
newTracker('sp2', '{{collector}}', { plugins: [ PerformanceTimingPlugin(), SiteTrackingPlugin() ] }); // You can have multiple trackers with different configs!
enableFormTracking() // Switch on form tracking
Then use the trackX functions from this package and your plugins to track to all trackers which have been initialized, or select just some trackers:
import { trackPageView } from '@mailbiz/browser-tracker';
import { trackSocialInteraction } from '@mailbiz/browser-plugin-site-tracking';
trackPageView({}, ['sp1']); // Just to `sp1`
// OR to all trackers with some extra context!
trackPageView({
title: 'My Title',
context: [
{
schema: 'iglu:org.schema/WebPage/jsonschema/1-0-0',
data: {
keywords: ['tester'],
},
},
],
});
// Use your plugin track methods too
trackSocialInteraction({
action: 'retweet',
network: 'twitter',
target: '1234',
});
Licensed and distributed under the BSD 3-Clause License (An OSI Approved License).
Copyright (c) 2022 Mailbiz.
All rights reserved.
FAQs
Browser tracker for Mailbiz
We found that @mailbiz/browser-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.