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

@ecropolis/emdash-plugin-compass-mail

v0.1.0

Published

Email transport for EmDash CMS: delivers the email pipeline through SendGrid or Resend with your own API key

Readme

Compass Mail — an EmDash CMS email transport

EmDash ships an email pipeline but no production transport: out of the box, ctx.email.send() works in dev (console provider) and throws in production. Compass Mail is the missing piece — a provider plugin that registers the exclusive email:deliver hook and sends through SendGrid or Resend with your own API key.

Every email feature in EmDash rides on this once selected: auth emails (magic links, invites), plugin notifications (e.g. Compass Forms submission alerts), and anything else that calls ctx.email.send().

Install

npm install @ecropolis/emdash-plugin-compass-mail
// astro.config.mjs
import compassMail from "@ecropolis/emdash-plugin-compass-mail";

export default defineConfig({
	integrations: [
		emdash({
			// ...
			plugins: [compassMail()],
		}),
	],
});

Standard-format plugin — the same code runs trusted (as above) or sandboxed.

Configure

  1. Plugins → Compass Mail → Settings: choose the provider, paste an API key with mail-send permission, and set the from address (and optional from name). The from address must be a verified sender — or on an authenticated domain — with your provider; that's a provider-side requirement, not ours.
  2. Settings → Email: select Compass Mail as the delivery provider.
  3. Send a test email from the same screen.

Behavior

  • Uses the plugin ctx.http fetch (hosts allowlisted to api.sendgrid.com and api.resend.com), so it is sandbox-compatible.
  • Throws with the provider's error detail on rejection — a failed send fails the pipeline call, and callers decide whether that's fatal (Compass Forms, for example, never loses a stored submission over a failed notification).
  • The API key is a secret setting: encrypted at rest, never shown again after saving.
  • No queuing or retries in v1 — sends are synchronous with the pipeline call.

License

MIT © Ecropolis