Skip to contentSkip to navigationSkip to topbar
On this page

How to set up your Node.js and Express development environment


In this guide, we'll cover how to set up your Node.js development environment for an Express(link takes you to an external page) project. We'll also walk through some helpful tools that we recommend for all Node.js applications that use Twilio: ngrok and the Twilio Node.js SDK(link takes you to an external page)


Install Node.js

install-nodejs page anchor

How you install Node.js varies depending on your operating system.

Operating SystemInstructions
OS XThe easiest way to install Node.js on OS X is to use the official installer from nodejs.org(link takes you to an external page). You can also use Homebrew(link takes you to an external page) if you prefer. To manage and switch between versions of Node.js on your machine, we recommend using nvm(link takes you to an external page).
WindowsThe easiest way to install Node.js on Windows is the official installer from nodejs.org(link takes you to an external page). You can also use Chocolatey(link takes you to an external page) if you prefer. To manage and switch between versions of Node.js on your machine, we recommend using nvm-windows(link takes you to an external page).
LinuxThe Node.js installation method(link takes you to an external page) varies by distribution. To manage and switch between versions of Node.js on your machine, we recommend using nvm(link takes you to an external page).

Install a text editor or IDE

install-a-text-editor-or-ide page anchor

Before we can start a Node.js project, we'll need a place to write our code.

If you already have a code-writing tool of choice, you can stick with it for developing your Node.js application. If you're looking for something new, we recommend trying out a few options:

If you're new to programming, we highly recommend getting off to a good start with Visual Studio Code. Many developers here at Twilio and in the wider JavaScript ecosystem are extremely happy using it.


Start a new Node.js project with npm init

start-a-new-nodejs-project-with-npm-init page anchor

Before starting any new Node.js project we should run npm init to create a new package.json file for our project.

Create a new empty directory in your development environment and run npm init. You'll then answer a few basic questions about your project, and npm will create a new package.json file for you when you're done.

1
$ npm init
2
This utility will walk you through creating a package.json file.
3
It only covers the most common items, and tries to guess sensible defaults.
4
5
See `npm help init` for definitive documentation on these fields
6
and exactly what they do.
7
8
Use `npm install <pkg>` afterward to install a package and
9
save it as a dependency in the package.json file.
10
11
Press ^C at any time to quit.
12
package name: (my-project)
13
version: (1.0.0)
14
entry point: (index.js)
15
test command:
16
git repository:
17
keywords:
18
author: Jane Doe
19
license: (ISC)
20
About to write to /Users/<your-username>/my-project/package.json:
21
22
{
23
"name": "my-project",
24
"version": "1.0.0",
25
"description": "A sample Twilio project",
26
"main": "index.js",
27
"scripts": {
28
"test": "echo \"Error: no test specified\" && exit 1"
29
},
30
"author": "Jane Doe",
31
"license": "ISC"
32
}
33
34
35
Is this OK? (yes) yes

Now we're ready to install our Node.js dependencies.

(information)

Info

You can quickly initialize your project and skip the above prompts by running npm init -y


Install Express.js and the Twilio Node.js SDK

install-expressjs-and-the-twilio-nodejs-sdk page anchor

We're almost ready to write an Express web application, but first, we need to install the Express package using npm.

1
# Use npm to install the express and Twilio packages
2
$ npm install express twilio
3
# List the installed dependencies and their versions
4
$ npm ls
5
my-project@1.0.0 /Users/<your-username>/my-project
6
├── express@4.17.1
7
└── twilio@3.67.2

Node.js uses npm(link takes you to an external page) to manage dependencies, so the command to install Express and the Twilio SDK to our development environment is npm install express twilio.

Installing these packages tells npm to add the Express and Twilio packages to the dependencies object in our project's package.json file. When we want to install these same packages again in the future - like on a production server - we can just run npm install.


Create a simple Express.js application

create-a-simple-expressjs-application page anchor

We can test that we configured our development environment correctly by creating a simple Express application. We'll grab the ten-line example from Express's documentation and drop it in a new file called index.js.

1
const express = require('express');
2
const app = express();
3
const port = 3000;
4
5
app.get('/', (req, res) => {
6
res.send('Hello World!');
7
});
8
9
app.listen(port, () => {
10
console.log(`Example app listening at http://localhost:${port}`);
11
});

We can then try running our new Express application with the command node index.js. If you open http://localhost:3000(link takes you to an external page) in your browser, you should see the "Hello World!" response.

(warning)

Warning

If you're using a virtual machine for your development environment, like Vagrant(link takes you to an external page), you might not see your Express application at the localhost hostname. Continue to the ngrok section for an easy way to fix this.


Install ngrok for local development

install-ngrok-for-local-development page anchor

Once you see your sample Express application's "Hello World!" message, your development environment is ready to go. However, for most Twilio projects you'll want to install one more helpful tool: ngrok(link takes you to an external page).

Most Twilio services use webhooks(link takes you to an external page) to communicate with your application. When Twilio receives an incoming phone call, for example, it reaches out to a URL in your application for instructions on how to handle the call.

When you're working on your Express application in your development environment, your app is only reachable by other programs on the same computer, so Twilio won't be able to talk to it.

Ngrok is our favorite tool for solving this problem. Once started, it provides a unique URL on the ngrok.io domain which will forward incoming requests to your local development environment.

To start, head over to the ngrok download page and grab the binary for your operating system: https://ngrok.com/download(link takes you to an external page)

Once downloaded, make sure your Express application is running, and then start ngrok using the command ./ngrok http 3000. You should see output similar to this:

1
ngrok by @inconshreveable (Ctrl+C to quit)
2
3
Session Status online
4
Account <Your name> (Plan: Free)
5
Version 2.3.40
6
Region United States (us)
7
Web Interface http://127.0.0.1:4040
8
Forwarding http://6e81-2601-1c0-6100-5087-309b-c292-5e5f-1f.ngrok.io -> http://localhost:3000
9
Forwarding https://6e81-2601-1c0-6100-5087-309b-c292-5e5f-1f.ngrok.io -> http://localhost:3000
10
11
Connections ttl opn rt1 rt5 p50 p90
12
0 0 0.00 0.00 0.00 0.00

Your unique ngrok domain name will be visible on the "Forwarding" line. Here, ours is "https://6e81-2601-1c0-6100-5087-309b-c292-5e5f-1f.ngrok.io(link takes you to an external page)".

If everything is working correctly, you should be able to open that domain name in your browser and see your Express application's "Hello World!" message displayed at your new ngrok URL.

Anytime you're working on your Twilio application and need a URL for a webhook, use ngrok to get a publicly accessible URL like this one.


Where to next with Express and Node?

where-to-next-with-express-and-node page anchor

You're now ready to build out your Express application! Here are a few other sample applications we've built:

More Node.js and Express resources and guides

more-nodejs-and-express-resources-and-guides page anchor

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.