You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/rtl.js

44 lines
1.2 KiB
JavaScript

#!/usr/bin/env node
6 years ago
const app = require("./app");
const common = require("./common");
6 years ago
const debug = require("debug")("node-angular");
const http = require("http");
var connect = require('./connect').setServerConfiguration(); //Do NOT Remove
6 years ago
const onError = error => {
if (error.syscall !== "listen") {
throw error;
}
const bind = typeof addr === "string" ? "pipe " + addr : "port " + common.port;
6 years ago
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;
case "ECONNREFUSED":
console.error("Server is down/locked");
6 years ago
default:
console.error("DEFUALT ERROR");
console.error(error.code);
6 years ago
throw error;
}
};
const onListening = () => {
const addr = server.address();
const bind = typeof addr === "string" ? "pipe " + addr : "port " + common.port;
6 years ago
debug("Listening on " + bind);
console.log('Server is up and running, please open the UI at http://' + common.host + ':' + common.port);
6 years ago
};
const server = http.createServer(app);
6 years ago
server.on("error", onError);
server.on("listening", onListening);
server.listen(common.port, common.host);