-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.js
44 lines (38 loc) · 1.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const ngrok = require("ngrok");
if (!process.env.TARGET_HOST || !process.env.TARGET_PORT) {
throw new Error(
"The following env variables are required: TARGET_HOST, TARGET_PORT"
);
process.exit(1);
}
const targetAddress = `${process.env.TARGET_HOST}:${process.env.TARGET_PORT}`;
const validRegions = ["us", "eu", "au", "ap"];
const region = process.env.NGROK_REGION
? validRegions.includes(process.env.NGROK_REGION.toLowerCase())
? process.env.NGROK_REGION.toLowerCase()
: "us"
: "us";
const validProtos = ["http", "tcp"];
const proto = process.env.NGROK_PROTO
? validProtos.includes(process.env.NGROK_PROTO.toLowerCase())
? process.env.NGROK_PROTO.toLowerCase()
: "http"
: "http";
const options = {
proto: proto,
addr: targetAddress,
auth: process.env.NGROK_AUTH,
region: region,
authtoken: process.env.NGROK_TOKEN,
configPath: "/ngrok.yml"
};
ngrok
.connect(options)
.then(url => {
console.log(`The ngrok tunnel is active`);
console.log(`${url} ---> ${targetAddress}`);
})
.catch(error => {
console.error(error);
process.exit(1);
});