For making local server accessible from the internet, instead of a paid Ngrok (its free version changes upon every launch which is inconvenient) we can use localtunnel. It is a node-js app.

To make it work, first install it:

npm install localtunnel

Then run from the current folder:

npx lt --port 5000

in exchange it will return us an address that we can use in our webhooks to access our locally hosted service from the internet.

← Back to Articles