
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
@nextengage/sdk
Advanced tools
Official TypeScript SDK for the NextEngage marketing platform (contacts, events, segments, campaigns).
Official TypeScript SDK for the NextEngage marketing platform.
pnpm add @nextengage/sdk
import { NextEngage } from "@nextengage/sdk";
const ne = new NextEngage({
apiKey: process.env.NEXTENGAGE_API_KEY!, // ne_...
baseUrl: "https://api.nextengage.io", // API origin; defaults to localhost:3001
});
// Upsert a contact (by email)
await ne.contacts.upsert({
email: "ada@example.com",
attributes: { country: "IN", plan: "pro" },
});
// Track a behavioral event (feeds dynamic segments)
await ne.contacts.track({ email: "ada@example.com", name: "purchased", properties: { amount: 49 } });
// Bulk import
await ne.contacts.bulkImport([
{ email: "a@x.com" },
{ email: "b@x.com", attributes: { vip: true } },
]);
// Create + send a campaign
const tpl = await ne.templates.create({ name: "Promo", subject: "Hi {{ email }}", body: "<p>Sale!</p>" });
const campaign = await ne.campaigns.create({ name: "Spring", templateId: tpl.id, fromEmail: "news@acme.com" });
await ne.campaigns.send(campaign.id);
The API key is scoped to a single project; the SDK resolves the project id
automatically from /me.
Failed requests throw NextEngageError with status and parsed body.
FAQs
Official TypeScript SDK for the NextEngage marketing platform (contacts, events, segments, campaigns).
The npm package @nextengage/sdk receives a total of 36 weekly downloads. As such, @nextengage/sdk popularity was classified as not popular.
We found that @nextengage/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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 compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.