2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/rtl.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-09-15 01:31:01 +00:00
const app = require("./app");
2019-02-12 13:36:04 +00:00
const common = require("./common");
2018-09-15 01:31:01 +00:00
const debug = require("debug")("node-angular");
const http = require("http");
const normalizePort = val => {
var port = parseInt(val, 10);
if (isNaN(port)) {
return val;
}
if (port >= 0) {
2019-02-12 13:36:04 +00:00
common.port = port;
2018-09-15 01:31:01 +00:00
return port;
}
return false;
};
const onError = error => {
if (error.syscall !== "listen") {
throw error;
}
const bind = typeof addr === "string" ? "pipe " + addr : "port " + port;
switch (error.code) {
case "EACCES":
console.error(bind + " requires elevated privileges");
process.exit(1);
break;
case "EADDRINUSE":
console.error(bind + " is already in use");
process.exit(1);
break;
2019-01-01 16:26:51 +00:00
case "ECONNREFUSED":
console.error("Server is down/locked");
2018-09-15 01:31:01 +00:00
default:
2019-01-01 16:26:51 +00:00
console.error("DEFUALT ERROR");
console.error(error.code);
2018-09-15 01:31:01 +00:00
throw error;
}
};
const onListening = () => {
const addr = server.address();
const bind = typeof addr === "string" ? "pipe " + addr : "port " + port;
debug("Listening on " + bind);
console.log('Server is up and running, please open the UI at http://localhost:' + port);
2018-09-15 01:31:01 +00:00
};
2019-02-12 13:36:04 +00:00
const port = normalizePort(process.env.PORT || common.port);
2018-09-15 01:31:01 +00:00
const server = http.createServer(app);
server.on("error", onError);
server.on("listening", onListening);
server.listen(port);