Skip to content

Instantly share code, notes, and snippets.

@ericpkatz
Created June 2, 2023 00:22
Show Gist options
  • Save ericpkatz/48b60553ee7c5fc24eef118273be6037 to your computer and use it in GitHub Desktop.
Save ericpkatz/48b60553ee7c5fc24eef118273be6037 to your computer and use it in GitHub Desktop.
require('./env');
const ngrok = require('ngrok');
const init = async()=> {
if(process.env.ngrok){
const url = await ngrok.connect(
{
port: process.env.PORT, authtoken: process.env.ngrok
}
);
console.log(url);
}
}
init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment