Convert Figma logo to code with AI

twilio logotwilio-node

Node.js helper library

1,384
503
1,384
30

Top Related Projects

A Python module for communicating with the Twilio API and generating TwiML.

A Ruby gem for communicating with the Twilio API and generating TwiML

A PHP library for communicating with the Twilio REST API and generating TwiML.

Quick Overview

Twilio-node is the official Node.js helper library for Twilio, a cloud communications platform. It provides a convenient way to interact with Twilio's API, allowing developers to easily integrate SMS, voice, and other communication services into their Node.js applications.

Pros

  • Easy-to-use API with intuitive methods for Twilio services
  • Comprehensive documentation and examples
  • Supports both promises and callbacks for asynchronous operations
  • Regular updates and maintenance by Twilio

Cons

  • Learning curve for developers new to Twilio's services
  • Dependency on Twilio's infrastructure and pricing
  • Some advanced features may require additional setup or knowledge

Code Examples

  1. Sending an SMS:
const accountSid = 'YOUR_ACCOUNT_SID';
const authToken = 'YOUR_AUTH_TOKEN';
const client = require('twilio')(accountSid, authToken);

client.messages
  .create({
    body: 'Hello from Node',
    to: '+12345678901',
    from: '+10987654321'
  })
  .then(message => console.log(message.sid));
  1. Making a voice call:
const accountSid = 'YOUR_ACCOUNT_SID';
const authToken = 'YOUR_AUTH_TOKEN';
const client = require('twilio')(accountSid, authToken);

client.calls
  .create({
    url: 'http://demo.twilio.com/docs/voice.xml',
    to: '+12345678901',
    from: '+10987654321'
  })
  .then(call => console.log(call.sid));
  1. Retrieving call logs:
const accountSid = 'YOUR_ACCOUNT_SID';
const authToken = 'YOUR_AUTH_TOKEN';
const client = require('twilio')(accountSid, authToken);

client.calls.list({limit: 20})
  .then(calls => calls.forEach(c => console.log(c.sid)));

Getting Started

  1. Install the library:

    npm install twilio
    
  2. Set up your Twilio credentials:

    const accountSid = 'YOUR_ACCOUNT_SID';
    const authToken = 'YOUR_AUTH_TOKEN';
    const client = require('twilio')(accountSid, authToken);
    
  3. Use the client to interact with Twilio services:

    client.messages
      .create({
        body: 'Hello from Twilio',
        to: '+12345678901',
        from: '+10987654321'
      })
      .then(message => console.log(`Message sent: ${message.sid}`))
      .catch(error => console.error(`Error: ${error.message}`));
    

Remember to replace 'YOUR_ACCOUNT_SID' and 'YOUR_AUTH_TOKEN' with your actual Twilio credentials, and use valid phone numbers for the 'to' and 'from' fields.

Competitor Comparisons

A Python module for communicating with the Twilio API and generating TwiML.

Pros of twilio-python

  • More comprehensive documentation and examples
  • Better support for asynchronous operations
  • Stronger type hinting and static analysis support

Cons of twilio-python

  • Slightly steeper learning curve for beginners
  • Less frequent updates compared to twilio-node

Code Comparison

twilio-python:

from twilio.rest import Client

client = Client(account_sid, auth_token)
message = client.messages.create(
    body="Hello from Python!",
    from_="+1234567890",
    to="+0987654321"
)

twilio-node:

const client = require('twilio')(accountSid, authToken);

client.messages
  .create({
    body: 'Hello from Node!',
    from: '+1234567890',
    to: '+0987654321'
  })
  .then(message => console.log(message.sid));

Both libraries offer similar functionality, but twilio-python provides a more Pythonic approach with synchronous method calls, while twilio-node uses Promises for asynchronous operations. The Python version also benefits from type hinting, making it easier to catch potential errors during development.

A Ruby gem for communicating with the Twilio API and generating TwiML

Pros of twilio-ruby

  • More mature and stable, with a longer development history
  • Better documentation and examples for Ruby-specific usage
  • Stronger integration with Ruby ecosystem and conventions

Cons of twilio-ruby

  • Slightly slower release cycle compared to twilio-node
  • Less active community contribution and fewer open-source contributors

Code Comparison

twilio-ruby:

require 'twilio-ruby'

client = Twilio::REST::Client.new(account_sid, auth_token)
message = client.messages.create(
  body: 'Hello from Ruby!',
  from: '+15551234567',
  to: '+15557654321'
)

twilio-node:

const twilio = require('twilio');

const client = twilio(accountSid, authToken);
client.messages
  .create({
    body: 'Hello from Node.js!',
    from: '+15551234567',
    to: '+15557654321'
  })
  .then(message => console.log(message.sid));

Both libraries offer similar functionality and ease of use. The main differences lie in language-specific features and syntax. twilio-ruby follows Ruby conventions with snake_case method names and block-based callbacks, while twilio-node uses camelCase and Promise-based asynchronous operations typical in JavaScript.

A PHP library for communicating with the Twilio REST API and generating TwiML.

Pros of twilio-php

  • More mature and stable, with a longer development history
  • Extensive documentation and community support
  • Better integration with PHP-specific frameworks and tools

Cons of twilio-php

  • Generally slower performance compared to Node.js
  • Less suitable for real-time applications
  • Fewer built-in asynchronous programming features

Code Comparison

twilio-php:

<?php
$twilio = new Twilio\Rest\Client($sid, $token);
$message = $twilio->messages->create(
    '+1234567890',
    array(
        'from' => '+0987654321',
        'body' => 'Hello from Twilio!'
    )
);

twilio-node:

const client = require('twilio')(accountSid, authToken);
client.messages
  .create({
     body: 'Hello from Twilio!',
     from: '+0987654321',
     to: '+1234567890'
   })
  .then(message => console.log(message.sid));

Both libraries offer similar functionality for interacting with Twilio's API. The PHP version uses a more traditional object-oriented approach, while the Node.js version leverages promises for asynchronous operations. The Node.js code is slightly more concise and better suited for event-driven applications, while the PHP code may be more familiar to developers coming from a traditional web development background.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

twilio-node

Documentation

The documentation for the Twilio API can be found here.

The Node library documentation can be found here.

Versions

twilio-node uses a modified version of Semantic Versioning for all changes. See this document for details.

Supported Node.js Versions

This library supports the following Node.js implementations:

  • Node.js 14
  • Node.js 16
  • Node.js 18
  • Node.js LTS (20)

TypeScript is supported for TypeScript version 2.9 and above.

Warning Do not use this Node.js library in a front-end application. Doing so can expose your Twilio credentials to end-users as part of the bundled HTML/JavaScript sent to their browser.

Installation

npm install twilio or yarn add twilio

Test your installation

To make sure the installation was successful, try sending yourself an SMS message, like this:

// Your AccountSID and Auth Token from console.twilio.com
const accountSid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
const authToken = 'your_auth_token';

const client = require('twilio')(accountSid, authToken);

client.messages
  .create({
    body: 'Hello from twilio-node',
    to: '+12345678901', // Text your number
    from: '+12345678901', // From a valid Twilio number
  })
  .then((message) => console.log(message.sid));

After a brief delay, you will receive the text message on your phone.

Warning It's okay to hardcode your credentials when testing locally, but you should use environment variables to keep them secret before committing any code or deploying to production. Check out How to Set Environment Variables for more information.

Usage

Check out these code examples in JavaScript and TypeScript to get up and running quickly.

Environment Variables

twilio-node supports credential storage in environment variables. If no credentials are provided when instantiating the Twilio client (e.g., const client = require('twilio')();), the values in following env vars will be used: TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN.

If your environment requires SSL decryption, you can set the path to CA bundle in the env var TWILIO_CA_BUNDLE.

Client Initialization

If you invoke any V2010 operations without specifying an account SID, twilio-node will automatically use the TWILIO_ACCOUNT_SID value that the client was initialized with. This is useful for when you'd like to, for example, fetch resources for your main account but also your subaccount. See below:

// Your Account SID, Subaccount SID Auth Token from console.twilio.com
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const subaccountSid = process.env.TWILIO_ACCOUNT_SUBACCOUNT_SID;

const client = require('twilio')(accountSid, authToken);
const mainAccountCalls = client.api.v2010.account.calls.list; // SID not specified, so defaults to accountSid
const subaccountCalls = client.api.v2010.account(subaccountSid).calls.list; // SID specified as subaccountSid

Lazy Loading

twilio-node supports lazy loading required modules for faster loading time. Lazy loading is enabled by default. To disable lazy loading, simply instantiate the Twilio client with the lazyLoading flag set to false:

// Your Account SID and Auth Token from console.twilio.com
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;

const client = require('twilio')(accountSid, authToken, {
  lazyLoading: false,
});

Enable Auto-Retry with Exponential Backoff

twilio-node supports automatic retry with exponential backoff when API requests receive an Error 429 response. This retry with exponential backoff feature is disabled by default. To enable this feature, instantiate the Twilio client with the autoRetry flag set to true.

Optionally, the maximum number of retries performed by this feature can be set with the maxRetries flag. The default maximum number of retries is 3.

const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;

const client = require('twilio')(accountSid, authToken, {
  autoRetry: true,
  maxRetries: 3,
});

Specify Region and/or Edge

To take advantage of Twilio's Global Infrastructure, specify the target Region and/or Edge for the client:

const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;

const client = require('twilio')(accountSid, authToken, {
  region: 'au1',
  edge: 'sydney',
});

Alternatively, specify the edge and/or region after constructing the Twilio client:

const client = require('twilio')(accountSid, authToken);
client.region = 'au1';
client.edge = 'sydney';

This will result in the hostname transforming from api.twilio.com to api.sydney.au1.twilio.com.

Iterate through records

The library automatically handles paging for you. Collections, such as calls and messages, have list and each methods that page under the hood. With both list and each, you can specify the number of records you want to receive (limit) and the maximum size you want each page fetch to be (pageSize). The library will then handle the task for you.

list eagerly fetches all records and returns them as a list, whereas each streams records and lazily retrieves pages of records as you iterate over the collection. You can also page manually using the page method.

For more information about these methods, view the auto-generated library docs.

// Your Account SID and Auth Token from console.twilio.com
const accountSid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
const authToken = 'your_auth_token';
const client = require('twilio')(accountSid, authToken);

client.calls.each((call) => console.log(call.direction));

Enable Debug Logging

There are two ways to enable debug logging in the default HTTP client. You can create an environment variable called TWILIO_LOG_LEVEL and set it to debug or you can set the logLevel variable on the client as debug:

const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;

const client = require('twilio')(accountSid, authToken, {
  logLevel: 'debug',
});

You can also set the logLevel variable on the client after constructing the Twilio client:

const client = require('twilio')(accountSid, authToken);
client.logLevel = 'debug';

Debug API requests

To assist with debugging, the library allows you to access the underlying request and response objects. This capability is built into the default HTTP client that ships with the library.

For example, you can retrieve the status code of the last response like so:

const accountSid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';
const authToken = 'your_auth_token';

const client = require('twilio')(accountSid, authToken);

client.messages
  .create({
    to: '+14158675309',
    from: '+14258675310',
    body: 'Ahoy!',
  })
  .then(() => {
    // Access details about the last request
    console.log(client.lastRequest.method);
    console.log(client.lastRequest.url);
    console.log(client.lastRequest.auth);
    console.log(client.lastRequest.params);
    console.log(client.lastRequest.headers);
    console.log(client.lastRequest.data);

    // Access details about the last response
    console.log(client.httpClient.lastResponse.statusCode);
    console.log(client.httpClient.lastResponse.body);
  });

Handle exceptions

If the Twilio API returns a 400 or a 500 level HTTP response, twilio-node will throw an error including relevant information, which you can then catch:

client.messages
  .create({
    body: 'Hello from Node',
    to: '+12345678901',
    from: '+12345678901',
  })
  .then((message) => console.log(message))
  .catch((error) => {
    // You can implement your fallback code here
    console.log(error);
  });

or with async/await:

try {
  const message = await client.messages.create({
    body: 'Hello from Node',
    to: '+12345678901',
    from: '+12345678901',
  });
  console.log(message);
} catch (error) {
  // You can implement your fallback code here
  console.error(error);
}

If you are using callbacks, error information will be included in the error parameter of the callback.

400-level errors are normal during API operation ("Invalid number", "Cannot deliver SMS to that number", for example) and should be handled appropriately.

Use a custom HTTP Client

To use a custom HTTP client with this helper library, please see the advanced example of how to do so.

Use webhook validation

See example for a code sample for incoming Twilio request validation.

Docker image

The Dockerfile present in this repository and its respective twilio/twilio-node Docker image are currently used by Twilio for testing purposes only.

Getting help

If you need help installing or using the library, please check the Twilio Support Help Center first, and file a support ticket if you don't find an answer to your question.

If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

Contributing

Bug fixes, docs, and library improvements are always welcome. Please refer to our Contributing Guide for detailed information on how you can contribute.

⚠️ Please be aware that a large share of the files are auto-generated by our backend tool. You are welcome to suggest changes and submit PRs illustrating the changes. However, we'll have to make the changes in the underlying tool. You can find more info about this in the Contributing Guide.

If you're not familiar with the GitHub pull request/contribution process, this is a nice tutorial.

Get started

If you want to familiarize yourself with the project, you can start by forking the repository and cloning it in your local development environment. The project requires Node.js to be installed on your machine.

After cloning the repository, install the dependencies by running the following command in the directory of your cloned repository:

npm install

You can run the existing tests to see if everything is okay by executing:

npm test

To run just one specific test file instead of the whole suite, provide a JavaScript regular expression that will match your spec file's name, like:

npm run test:javascript -- -m .\*client.\*

NPM DownloadsLast 30 Days