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

sently

v1.2.2

Published

Runtime-agnostic channel-delivery library for Node.js, Bun, Deno, and Cloudflare Workers. One sender shape, one error model, and one retry path across email, SMS, WhatsApp, and push — with pluggable provider transports.

Readme

Install

bun add sently                                     # npm / Bun / yarn / pnpm
bunx jsr add @omqkhafi/sently                      # JSR

JSR consumers on @alialnaghmoush/sently: switch to @omqkhafi/sently. The old scope will not receive new versions. npm sently is unchanged.

Optional peers (React Email only): react, @react-email/render.

Quick start

import { createMailer } from "sently/mailer";
import { ResendTransport } from "sently/transports/resend";

const mailer = await createMailer({
  transport: new ResendTransport({ apiKey: process.env.RESEND_API_KEY! }),
});

await mailer.send({
  from: "[email protected]",
  to: "[email protected]",
  subject: "Welcome",
  html: "<p>Sent with sently.</p>",
});

Same shape for every channel — apps use sently senders, not vendor SDKs:

| Channel | Sender | Example transport | | -------- | ------------------------------------ | ------------------------------------------------------ | | Email | createMailer / createSMTPMailer | sently/transports/resend, sently/smtp | | SMS | createSmsSender | sently/transports/twilio-sms, unifonic, taqnyat-sms | | WhatsApp | createWhatsAppSender | sently/transports/whatsapp-cloud | | Push | createPushSender | sently/transports/webpush, fcm |

Full walkthrough: Get started.

Why sently?

Teams usually start on one channel (often email), then add SMS and push. Each vendor SDK brings its own auth, retries, and error shapes. sently keeps one sender shape, one SentlyError model, and one retry/fallback path as you add channels.

Library, not platform. sently is the channel-delivery layer. Preference centers, digests, workflow builders, and in-app inboxes — custom logic or tools like Novu, Knock, or Courier — sit on top of sently, not instead of it.

Compared with email-only stacks (e.g. Nodemailer) and a pile of vendor clients:

| | Typical stack | sently | | ----------------- | ------------------------------------- | ------------------------------------------- | | As channels grow | New SDK per channel | Same sender factories | | Failures | Per-vendor exceptions | Stable SentlyError codes | | Reliability | Ad-hoc per client | RetryTransport + FallbackTransport | | Providers | Vendor clients in app code | Pluggable transports | | Runtimes | Often Node only | Node, Bun, Deno, CF Workers | | Edge / Workers | Fat SDKs hurt cold start | Tree-shakeable (~6.3 KB HTTP · ~14.9 KB SMTP) | | Module format | Often CJS | ESM only | | Dependencies | Varies | 0 runtime deps |

More detail: Compare · Stability · Support matrix.

Entrypoints

| Import | Use when | | ---------------------- | --------------------------------------------- | | sently/mailer | HTTP / custom email transports (smallest) | | sently/smtp | SMTP host, pool, adapters, DKIM | | sently/sms | SMS | | sently/whatsapp | WhatsApp | | sently/push | Push (Web Push or FCM) | | sently/channel-result | Shared { messageId, provider, accepted } | | sently/transports/* | One provider or decorator per subpath | | sently/webhooks/* | Email / SMS / WhatsApp delivery parsers |

Documentation

| Resource | Link | | ------------ | ------------------------------------------------------------ | | Docs site | sently.omqkhafi.dev | | Handbook | /docs | | Get started | /docs/get-started | | Channels | /docs/channels | | Transports | /docs/transports | | Compare | /docs/guides/compare | | Agents index | /llms.txt | | Changelog | CHANGELOG.md | | Security | SECURITY.md | | Agents | AGENTS.md |

Local docs: bun run site:dev. Verify: bun run verify.

Semver-stable channel contracts. Published on npm (provenance + Trusted Publishing) and JSR. MIT.