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

@airhornjs/twilio

v5.1.2

Published

Twilio SMS and SendGrid Email provider for Airhorn notification system

Readme

Airhorn


tests codecov license npm npm

@airhornjs/twilio

Twilio SMS and SendGrid Email provider for the Airhorn notification system.

Installation

npm install airhorn @airhornjs/twilio

Features

  • SMS sending via Twilio API
  • Email sending via SendGrid API
  • Automatic error handling and retry support
  • Integration with Airhorn's notification system

Usage

SMS with Twilio

import { Airhorn } from 'airhorn';
import { AirhornTwilio } from '@airhornjs/twilio';

// Create Twilio provider for SMS only
const twilioProvider = new AirhornTwilio({
  accountSid: 'your-account-sid',
  authToken: 'your-auth-token',
});

// Create Airhorn instance with Twilio provider
const airhorn = new Airhorn({
  providers: [twilioProvider],
});

// Send SMS
const message = {
  from: '+1234567890',
  content: 'Hello John!, your order #12345 has been shipped!',
  type: AirhornProviderType.SMS,
};

const result = await airhorn.send(
  '+0987654321', // to
  message,
);

Email with SendGrid

import { Airhorn } from 'airhorn';
import { TwilioProvider } from '@airhornjs/twilio';

// Create Twilio provider with SendGrid support
const twilioProvider = new TwilioProvider({
  accountSid: 'your-account-sid',
  authToken: 'your-auth-token',
  sendGridApiKey: 'your-sendgrid-api-key', // Enables email support
});

// Create Airhorn instance
const airhorn = new Airhorn({
  providers: [twilioProvider],
});

// Send Email
const message = {
  from: '[email protected]',
  subject: 'Order Confirmation',
  content: '<h1>Hello John</h1><p>Your order #656565 has been confirmed!</p>',
  type: AirhornProviderType.Email,
};

const result = await airhorn.send(
  '[email protected]', // to
  message,
);

Both SMS and Email

When configured with both Twilio and SendGrid credentials, the provider supports both SMS and email notifications:

const provider = new TwilioProvider({
  // Twilio SMS configuration
  accountSid: 'your-account-sid',
  authToken: 'your-auth-token',
  
  // SendGrid Email configuration
  sendGridApiKey: 'your-sendgrid-api-key',
  
  // Optional Twilio configuration
  region: 'sydney',
  edge: 'sydney',
});

// Provider capabilities will include both 'sms' and 'email'
console.log(provider.capabilities); // ['sms', 'email']

Configuration

AirhornTwilioOptions

  • accountSid (required): Your Twilio Account SID
  • authToken (required): Your Twilio Auth Token
  • sendGridApiKey (optional): Your SendGrid API key (enables email support)
  • region (optional): Twilio region
  • edge (optional): Twilio edge location

Additional Options

You can pass additional provider-specific options as the second parameter to the send method:

Twilio SMS Options

await airhorn.send(to, message, {
  statusCallback: 'https://example.com/callback',
  maxPrice: '0.50',
  validityPeriod: 14400,
  // ... other Twilio message options
});

SendGrid Email Options

await airhorn.send(to, message, {
  replyTo: '[email protected]',
  categories: ['transactional', 'order-confirmation'],
  trackingSettings: {
    clickTracking: { enable: true },
    openTracking: { enable: true },
  },
  // ... other SendGrid mail options
});

How to Contribute

Now that you've set up your workspace, you're ready to contribute changes to the airhorn repository you can refer to the CONTRIBUTING guide. If you have any questions please feel free to ask by creating an issue and label it question.

Licensing and Copyright

This project is MIT License © Jared Wray