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

@sendpigeon-sdk/cli

v1.2.1

Published

SendPigeon CLI - send emails and manage your account

Downloads

175

Readme

@sendpigeon-sdk/cli

SendPigeon CLI - send emails and manage your account from the terminal.

Installation

npm install -g @sendpigeon-sdk/cli

# Or use with npx
npx @sendpigeon-sdk/cli <command>

Commands

sendpigeon dev

Start a local dev server for catching emails:

sendpigeon dev

This starts:

  • API at http://localhost:4100/v1/emails
  • UI at http://localhost:4100
  • SMTP at localhost:4125

Options:

  • -p, --port <port> - HTTP port (default: 4100)
  • --smtp-port <port> - SMTP port (default: 4125)
  • --no-smtp - Disable SMTP server

sendpigeon send

Send an email:

sendpigeon send \
  --from [email protected] \
  --to [email protected] \
  --subject "Hello" \
  --html "<p>Hi there!</p>"

# With template
sendpigeon send \
  --from [email protected] \
  --to [email protected] \
  --template welcome \
  --var name=John \
  --var company=Acme

Options:

  • --from <email> - Sender address (required, must be verified domain)
  • --to <email> - Recipient (required, comma-separated for multiple)
  • --subject <text> - Email subject
  • --html <html> - HTML body
  • --text <text> - Plain text body
  • --template <id> - Template ID
  • --var <key=value> - Template variable (repeatable)
  • --cc, --bcc, --reply-to - Additional recipients
  • --tag <tag> - Add tag (repeatable, max 5)
  • --track-opens - Enable open tracking
  • --track-clicks - Enable click tracking

sendpigeon status

Check API key and account status:

sendpigeon status

sendpigeon templates

Manage email templates:

sendpigeon templates list              # List all templates
sendpigeon templates get <id>          # Get template details
sendpigeon templates pull              # Download to ./sendpigeon-templates/
sendpigeon templates push              # Upload from ./sendpigeon-templates/

sendpigeon logs

View email logs:

sendpigeon logs                        # Show recent emails
sendpigeon logs --status bounced       # Filter by status
sendpigeon logs tail                   # Stream in real-time
sendpigeon logs get <id>               # Get email details

sendpigeon webhooks

Manage webhooks:

sendpigeon webhooks                    # Show webhook config
sendpigeon webhooks test               # Send test webhook
sendpigeon webhooks deliveries         # List recent deliveries

sendpigeon domains

Manage sending domains:

sendpigeon domains list                # List all domains
sendpigeon domains verify <id>         # Check DNS records

Authentication

Set your API key via environment variable:

export SENDPIGEON_API_KEY=sk_live_xxx

Or pass it to any command:

sendpigeon status --api-key sk_live_xxx

Local Development

Set SENDPIGEON_DEV=true to route SDK requests to the local dev server:

# Terminal 1
sendpigeon dev

# Terminal 2
SENDPIGEON_DEV=true node your-app.js

License

MIT