mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
58 lines
1.1 KiB
JavaScript
Executable File
58 lines
1.1 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import app from "../app.js";
|
|
import debug from "debug";
|
|
import { createServer } from "http";
|
|
|
|
const debugLogger = debug("minexlauncher:server");
|
|
|
|
const port = normalizePort(process.env.PORT || "3000");
|
|
app.set("port", port);
|
|
|
|
const server = createServer(app);
|
|
|
|
server.listen(port);
|
|
server.on("error", onError);
|
|
server.on("listening", onListening);
|
|
|
|
function normalizePort(val) {
|
|
const port = parseInt(val, 10);
|
|
|
|
if (isNaN(port)) {
|
|
return val;
|
|
}
|
|
|
|
if (port >= 0) {
|
|
return port;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function onError(error) {
|
|
if (error.syscall !== "listen") {
|
|
throw error;
|
|
}
|
|
|
|
const bind = typeof port === "string" ? "Pipe " + port : "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;
|
|
default:
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
function onListening() {
|
|
const addr = server.address();
|
|
const bind = typeof addr === "string" ? "pipe " + addr : "port " + addr.port;
|
|
debugLogger("Listening on " + bind);
|
|
}
|