better-notify
Context and API guidance for Better Notify — end-to-end typed notification infrastructure for Node.js
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Context and API guidance for Better Notify — end-to-end typed notification infrastructure for Node.js
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Quick reference for Better Notify configuration, patterns, and common gotchas
Interactive setup wizard for adding Better Notify to a TypeScript/JavaScript project
Seamlessly use AI SDK inside your oRPC projects without any extra overhead.
Use oRPC inside an Astro project.
Functions to encode and decode base64url strings (URL-safe variant of base64).
A plugin for oRPC to batch requests and responses to reduce overhead.
| name | better-notify |
| description | Context and API guidance for Better Notify — end-to-end typed notification infrastructure for Node.js |
| license | MIT |
| metadata | {"author":"betternotify","homepage":"https://better-notify.com","version":"1.0.0"} |
End-to-end typed notification infrastructure for Node.js (ESM-only, Node >= 22). A single catalog type drives the typed sender and webhook router — analogous to tRPC, but for notifications.
When setting up typed notifications, adding email/SMS/push transports, defining notification catalogs, or answering questions about @betternotify/* packages.
Catalog — Typed contract defining notification routes. Built with createNotify(), composed via .catalog(). Sub-catalogs flatten into dot-path IDs (transactional.welcome).
Client — Type-safe sender derived from a catalog. createClient() returns mail.<route>.send(input) and .render().
Channel — Notification medium (email, SMS, push, etc.). Each defines its own message shape and transport interface. defineChannel() creates custom channels.
Transport — Delivery adapter for a channel. Receives a resolved message and sends it.
Middleware — Composable pipeline functions. Named with with prefix (withRateLimit, withDryRun).
Template Adapter — Renders input into HTML/text. Adapters for React Email, MJML, and Handlebars.
Core: @betternotify/core — contracts, client, middleware, hooks, webhook router. Subpath exports: /transports, /middlewares, /stores, /sinks, /tracers, /logger, /plugins, /config.
Channels: @betternotify/{email, sms, push, discord, slack, telegram}, @betternotify/zapier (channel + email transport)
Transports: @betternotify/smtp (Nodemailer), @betternotify/{resend, cloudflare-email, twilio}, @betternotify/mailchimp (Mandrill)
Templates: @betternotify/{react-email, mjml, handlebars}
CLI: create-better-notify — scaffolding tool (npx create-better-notify)
Docs: better-notify.com/docs