Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@snowplow/node-tracker
Advanced tools
Add Snowplow Tracking to your Node.js Application with @snowplow/node-tracker
.
Part of the Snowplow JavaScript Tracker monorepo.
Build with Node.js (18 - 20) and Rush.
npm install -g @microsoft/rush
git clone https://github.com/snowplow/snowplow-javascript-tracker.git
rush update
With npm:
npm install @snowplow/node-tracker
Initialize your tracker with your desired configuration:
import { newTracker } from '@snowplow/node-tracker';
const t = newTracker(
{ namespace: 'myTracker', appId: 'myApp', encodeBase64: false },
{ endpoint: 'collector.mydomain.net', port: 8080, bufferSize: 5 }
);
Then use the track
function from this package, along with the buildX
functions to send events to your configured emitters:
import {
buildSelfDescribingEvent,
buildPageView
} from '@snowplow/node-tracker';
const context = [
{
schema: 'iglu:com.acme/user/jsonschema/1-0-0',
data: {
type: 'tester',
},
},
];
t.track(
buildPageView({ pageUrl: 'http://www.example.com', pageTitle: 'example page', referrer: 'http://google.com' }),
context
);
const eventJson = {
schema: 'iglu:com.acme/viewed_product/jsonschema/1-0-0',
data: {
price: 20,
},
};
t.track(buildSelfDescribingEvent({ event: eventJson }), context);
To enable success and failure callback debugging, run your application with NODE_DEBUG=snowplow
.
Licensed and distributed under the BSD 3-Clause License (An OSI Approved License).
Copyright (c) 2022 Snowplow Analytics Ltd.
All rights reserved.
FAQs
Node tracker for Snowplow
The npm package @snowplow/node-tracker receives a total of 11,704 weekly downloads. As such, @snowplow/node-tracker popularity was classified as popular.
We found that @snowplow/node-tracker 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.