Set up your server
Last updated
Was this helpful?
Last updated
Was this helpful?
For the purposes of this tutorial, we're going to use a local server to receive messages from EverTransit. For this, we will use NodeJS
and express
to create our local development environment, and ngrok
to expose our local development environment to the internet.
First of all, we need to have NodeJS installed. If you don't have it installed, you can install it from .
Next, we create our little NodeJS project and install the necessary dependencies.
We'll use ngrok
to do this. ngrok
is available, free of charge, for all major operating systems. For more information, see .
After installing ngrok
, you can expose your localhost by running ngrok http 3000
on the command line. 3000 is the port number on which our server will listen for messages. You should see a line that looks something like this:
Make a note of the https://*.ngrok.io
URL. We'll use it to set up our webhook.