Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
segment-protocol
Advanced tools
Segment introduced [Analytics.js in 2012](https://news.ycombinator.com/item?id=4912076). Since then, a lot of companies besides Segment have started to use same API for their own SDKs. Notable examples: Jitsu, Rudderstack, June.so and Hightouch Events
Segment introduced Analytics.js in 2012. Since then, a lot of companies besides Segment have started to use same API for their own SDKs. Notable examples: Jitsu, Rudderstack, June.so and Hightouch Events
However, Segment protocol was never formally spec'ed. segment-protocols
project aims to fill the gap, at least partially,
by providing a TypeScript types for Segment protocol. Since the protocol doesn't have an official documentation, each
vendor has its own treatment and set of extension. This project aims to cover most of them and be flexible enough.
Along with the types, this project also provides a set of tools to work them.
npm install -S segment-protocols #for npm
yarn add segment-protocols #for yarn
pnpm add segment-protocols #for pnpm
AnalyticsInterface
is an interface that contains all the methods that are supported by Segment-compatible SDKs: track()
, page()
, screen()
etc.
AnayliticsClientEvent
is an interface that contains an event that can be sent to Segment-compatible end-point. The type has a number
of subtypes that narrow it down for particular event type: ScreenEvent
, TrackEvent
, IdentifyEvent
etc.
AnalyticsServerEvent
is an event that is being processed by server. It's an AnayliticsClientEvent
plus certain properties
which is inferred from HTTP Request context, such as IP address
The library provides a number of tools to simplify the implementation of Segment protocol for various use-cases
createAnalyticsSerializer()
creates an adjusted implementation of AnalyticsInterface
that returns AnalyticsServerEvent
on every method call. This function serves as a reference implementation that turns .track()
, .page()
etc. methods
into a JSON message that is being sent to Segment-compatible end-point.
createAnalytics(opts)
creates an implementation of AnalyticsInterface
that uses createAnalyticsSerializer()
to serialize events,
and passes it to opts.handler
.
inferAnalyticsContextFields()
. AnalyticsClientEvent
and AnalyticsServerEvent
has a number of fields that can be inferred from others. For example,
context.page.referring_domain
can be inferred from context.page.referred
. This function takes an event and returns a new event, with inferred fields if those fields are missing
in the original event.
Segment protocol allows to pass any set of properties and user traits along with event. It's convinient and gives a lot of flexibility,
but at the same time it's easy to make a mistake and pass a wrong property name or value type. AnalyticsTypeHelper
solves this:
//first, let's define types for properties and user traits
type TrackingProperties = { env: string };
type UserProperties = { name: string; email: string };
//define a type with all possible event names for .track() method
type EventNames = 'Sign Up' | 'Sign In' | 'Sign Out';
type MyAnalytics = AnalyticsInterface<{
//event names for .track() method
eventNames: "Sign Up" | "Login" | "Logout";
//properties for .page() and .track() methods
page: TrackingProperties;
track: TrackingProperties;
//user traits for .identify() method
traits: UserProperties;
}>;
//now we can use it. No need to create a new instance of analytics, since all validation is done at compile time
const myAnalytics: MyAnalytics = analytics as MyAnalytics;
myAnalytics.page({ env: "prod" }); // ✅OK
myAnalytics.page({ otherProp: "prod" }); //⚠️Error - unknown property
myAnalytics.identify({ name: "John Doe", email: "john.doe@gmail.com" }); //✅OK
myAnalytics.identify({ name: "John Doe" }); //⚠️Error - email is missing
myAnalytics.track("Sign Up"); //✅OK
myAnalytics.track("sign up"); //⚠️Error - misspelled event name
bun (>= 1.0.0)
and pnpm (>= 8.1.0)
are required. bun
is used for building and package management,
pnpm
is used only for publishing to NPM registry
bun build
— to build the project (including linting and type-checking);bun test
— to run testsbun format:check
- to check code formatting; bun format
- to reformat all filesbun run build && bun release
- to publish a new version to NPM registry (dry run); bun build && bun release --publish
to actually publish itbun run build && bun release:canary
- to publish a new canary versionFAQs
Segment introduced [Analytics.js in 2012](https://news.ycombinator.com/item?id=4912076). Since then, a lot of companies besides Segment have started to use same API for their own SDKs. Notable examples: Jitsu, Rudderstack, June.so and Hightouch Events
We found that segment-protocol demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.