npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@uninspired/plunk-next

v0.1.0

Published

TypeScript client for the Plunk Next API

Readme

@uninspired/plunk-next

TypeScript client for the Plunk Next API. Send transactional email, track events, and manage contacts, templates, campaigns, and segments.

Zero runtime dependencies. Works in Node.js 18+ and any other runtime with a global fetch. Ships ESM and CommonJS, with generated TypeScript types.

Installation

npm install @uninspired/plunk-next
# or
bun add @uninspired/plunk-next
# or
pnpm add @uninspired/plunk-next
# or
yarn add @uninspired/plunk-next

Create a Plunk project and copy your secret (sk_…) and public (pk_…) API keys from the dashboard.

Usage

Create a client

PlunkClient uses a secret key for sending mail and managing resources. PlunkPublicClient uses a public key for event tracking.

import { PlunkClient, PlunkPublicClient } from "@uninspired/plunk-next";

const client = new PlunkClient("sk_your_secret_key");
const publicClient = new PlunkPublicClient("pk_your_public_key");

Pass an options object when you need a custom base URL (self-hosted or staging):

const client = new PlunkClient({
  apiKey: "sk_your_secret_key",
  baseUrl: "https://next-api.useplunk.com", // default
});

Send email

const result = await client.send({
  to: "[email protected]",
  from: "[email protected]",
  subject: "Welcome",
  body: "<p>Thanks for signing up.</p>",
});

console.log(result.emails[0]?.email);

to and from accept a string, { name, email }, or an array of either. You can also send from a saved template, attach files, and pass contact data:

await client.send(
  {
    to: [{ name: "Ada", email: "[email protected]" }],
    from: { name: "Acme", email: "[email protected]" },
    template: "tmpl_welcome",
    reply: "[email protected]",
    subscribed: true,
    data: { plan: "pro" },
    attachments: [
      {
        filename: "invoice.pdf",
        content: pdfBase64,
        contentType: "application/pdf",
      },
    ],
  },
  { idempotencyKey: "welcome-ada-2026-08-28" },
);

Track events

Use the public client from browsers or other untrusted contexts.

await publicClient.track(
  {
    email: "[email protected]",
    event: "signup",
    subscribed: true,
    data: { source: "landing" },
  },
  { idempotencyKey: "[email protected]" },
);

Set persistent: false on a data value to attach it to this event only, without writing it onto the contact:

await publicClient.track({
  email: "[email protected]",
  event: "checkout",
  data: {
    plan: "pro",
    cartTotal: { value: 49, persistent: false },
  },
});

Verify an address

const check = await client.verify({ email: "[email protected]" });

if (!check.valid) {
  console.log(check.reasons, check.suggestedEmail);
}

Contacts

Contacts use cursor pagination. Custom fields live on data.

const created = await client.contacts.create({
  email: "[email protected]",
  subscribed: true,
  data: { plan: "pro" },
});

await client.contacts.update(created.id, { data: { plan: "enterprise" } });

const page = await client.contacts.list({
  limit: 50,
  search: "ada",
  subscribed: true,
  sort: "createdAt",
  dir: "desc",
});

const { found, notFound } = await client.contacts.lookup({
  emails: ["[email protected]", "[email protected]"],
});

await client.contacts.delete(created.id);

Import a CSV, then poll the job:

const { jobId } = await client.contacts.import(new Blob([csv], { type: "text/csv" }));
const status = await client.contacts.getImportStatus(jobId);

Bulk subscribe, unsubscribe, or delete by contact IDs or by query:

const { jobId } = await client.contacts.bulkSubscribe({
  mode: "query",
  subscribed: false,
});

await client.contacts.getBulkStatus(jobId);

Field catalog helpers: listFields(), listFieldValues(field), getFieldUsage(field), deleteField(field).

Templates

Templates use offset pagination.

const template = await client.templates.create({
  name: "Welcome",
  subject: "Welcome to Acme",
  body: "<p>Hello {{email}}</p>",
  from: "[email protected]",
  type: "TRANSACTIONAL",
});

await client.templates.update(template.id, { subject: "Welcome aboard" });
await client.templates.duplicate(template.id);
await client.templates.usage(template.id);
await client.templates.delete(template.id);

Campaigns

const campaign = await client.campaigns.create({
  name: "August newsletter",
  subject: "What’s new",
  body: "<p>Hello</p>",
  from: "[email protected]",
  audienceType: "ALL",
});

await client.campaigns.test(campaign.id, { email: "[email protected]" });

const scheduled = await client.campaigns.send(campaign.id, {
  scheduledFor: new Date(Date.now() + 86_400_000).toISOString(),
});

await client.campaigns.cancel(campaign.id);
await client.campaigns.stats(campaign.id);

audienceType is "ALL", "SEGMENT" (with segmentId), or "FILTERED" (with audienceCondition).

Segments

Dynamic segments are defined by a filter condition. Static segments are managed by adding and removing emails.

const dynamic = await client.segments.create({
  name: "Subscribed",
  type: "DYNAMIC",
  condition: {
    logic: "AND",
    groups: [
      { filters: [{ field: "subscribed", operator: "equals", value: true }] },
    ],
  },
});

await client.segments.refresh(dynamic.id);
await client.segments.compute(dynamic.id);

const staticSeg = await client.segments.create({
  name: "Beta testers",
  type: "STATIC",
});

await client.segments.addMembers(staticSeg.id, {
  emails: ["[email protected]"],
  createMissing: true,
  subscribed: true,
});

await client.segments.listContacts(staticSeg.id, { page: 1, pageSize: 50 });
await client.segments.removeMembers(staticSeg.id, { emails: ["[email protected]"] });

Errors

Non-2xx responses throw PlunkError.

import { PlunkError } from "@uninspired/plunk-next";

try {
  await client.send({ to: "not-an-email", subject: "Hi", body: "<p>Hi</p>" });
} catch (error) {
  if (error instanceof PlunkError) {
    console.error(error.code, error.statusCode, error.requestId);
    console.error(error.errors, error.suggestion);
  }
}

CommonJS

const { PlunkClient, PlunkPublicClient } = require("@uninspired/plunk-next");

const client = new PlunkClient("sk_your_secret_key");

API

Clients

| Export | Key | Purpose | | --- | --- | --- | | PlunkClient | secret (sk_…) | Send, verify, contacts, templates, campaigns, segments | | PlunkPublicClient | public (pk_…) | Track events | | PlunkError | — | Thrown on non-2xx responses | | DEFAULT_BASE_URL | — | https://next-api.useplunk.com |

Constructor argument: a key string, or { apiKey, baseUrl? }.

send and track take an optional second argument { idempotencyKey } which is sent as the Idempotency-Key header.

PlunkClient

| Method | Description | | --- | --- | | send(body, options?) | Send transactional email | | verify(body) | Validate an email address |

client.contacts

| Method | Description | | --- | --- | | list(params?) | Cursor-paginated list (limit, cursor, search, subscribed, sort, dir) | | create(body) | Create a contact | | get(id) | Fetch one contact | | update(id, body) | Patch email, subscribed, or data | | delete(id) | Delete a contact | | lookup({ emails }) | Split addresses into found / not found | | listFields() | Custom field catalog | | listFieldValues(field) | Distinct values for a field | | getFieldUsage(field) | Segments/campaigns using a field | | deleteField(field) | Remove a custom field | | import(file) | CSV import; returns { jobId } | | getImportStatus(jobId) | Poll an import job | | bulkSubscribe(body) / bulkUnsubscribe(body) / bulkDelete(body) | Bulk jobs by ids or query | | getBulkStatus(jobId) | Poll a bulk job |

client.templates

| Method | Description | | --- | --- | | list(params?) | Offset-paginated list | | create(body) | Create a template | | get(id) / update(id, body) / delete(id) | CRUD | | duplicate(id) | Copy a template | | usage(id) | Workflow and send counts |

client.campaigns

| Method | Description | | --- | --- | | list(params?) | Offset-paginated list | | create(body) | Create a campaign | | get(id) / update(id, body) / delete(id) | CRUD | | duplicate(id) | Copy a campaign | | send(id, body?) | Send now, or schedule with scheduledFor | | cancel(id) | Cancel a scheduled send | | test(id, { email }) | Send a test copy | | stats(id) | Delivery and engagement rates |

client.segments

| Method | Description | | --- | --- | | list() | All segments | | create(body) | Create a DYNAMIC or STATIC segment | | get(id) / update(id, body) / delete(id) | CRUD | | listContacts(id, params?) | Members, offset-paginated | | addMembers(id, body) / removeMembers(id, body) | Static membership | | compute(id) | Re-evaluate a dynamic segment | | refresh(id) | Refresh member count |

Request and response types (SendRequest, Contact, Campaign, FilterCondition, and so on) are exported from the package.

Development

This repo uses Bun. Node.js 18+ is enough to consume the published package.

bun install

Scripts

| Command | What it does | | --- | --- | | bun run build | Bundle ESM, CJS, and .d.ts into dist/ via tsup | | bun run typecheck | tsc --noEmit | | bun run lint | oxlint | | bun run lint:fix | oxlint with --fix | | bun test | Integration tests | | bun run check | typecheck + lint + test |

prepublishOnly runs the build, so npm publish always ships a fresh dist/.

Tests

Tests hit the live Plunk Next API and skip when the required env vars are missing. Copy .env.example to .env:

cp .env.example .env
PLUNK_SECRET_KEY=sk_your_secret_key
PLUNK_PUBLIC_KEY=pk_your_public_key
[email protected]
[email protected]
  • PLUNK_SECRET_KEY — most suites
  • PLUNK_PUBLIC_KEYtrack
  • PLUNK_TEST_FROM — send, templates, and campaigns (must be a verified domain)
  • PLUNK_TEST_EMAIL — recipient for send/test; defaults to a throwaway @example.com address

Suites clean up contacts, templates, campaigns, and segments they create. Campaign tests can take up to 60 seconds.

Without keys, bun test still exits 0: every case is skipped rather than failed.

Layout

src/
  index.ts              public exports
  private-client.ts     PlunkClient
  public-client.ts      PlunkPublicClient
  http.ts               fetch wrapper
  errors.ts             PlunkError
  resources/            contacts, templates, campaigns, segments
  types/                request/response types
tests/                  live API tests

License

MIT