forked from Ride-The-Lightning/RTL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.js
42 lines (37 loc) · 1.2 KB
/
rtl.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
#!/usr/bin/env node
const app = require("./app");
const common = require("./common");
const http = require("http");
var connect = require('./connect').setServerConfiguration(); //Do NOT Remove
const onError = error => {
if (error.syscall !== "listen") {
throw error;
}
switch (error.code) {
case "EACCES":
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " requires elevated privileges");
process.exit(1);
break;
case "EADDRINUSE":
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " is already in use");
process.exit(1);
break;
case "ECONNREFUSED":
console.error("Server is down/locked");
default:
console.error("DEFUALT ERROR");
console.error(error.code);
throw error;
}
};
const onListening = () => {
console.log('Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port);
};
const server = http.createServer(app);
server.on("error", onError);
server.on("listening", onListening);
if (common.host) {
server.listen(common.port, common.host);
} else {
server.listen(common.port);
}