1 Star 4 Fork 13

idcf-boat-house / boathouse-calculator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
server.js 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
libinji 提交于 2022-11-10 07:20 . SmartIDE MacOS Smoke1110:Server Host√
#!/usr/bin/env node
/** SmartIDE MacOS Smoke1110:
* Local Host√ Hybrid
* Remote Hybrid
* K8S Hybrid
* Server Host√ Hybrid
* K8S√ Hybrid
*/
/**
* Module dependencies.
*/
const app = require('./app');
const debug = require('debug')('calculator:server');
const http = require('http');
/**
* Get port from environment and store in Express.
*/
const port = normalizePort(process.env.PORT || '3001');
const host = '0.0.0.0'
app.set('port', port);
/**
* Create HTTP server.
*/
const server = http.createServer(app);
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port, host);
server.on('error', onError);
server.on('listening', onListening);
console.log("Server running on port " + port);
console.log("Smoke 2022.9.20 local+remote");
/**
* Normalize a port into a number, string, or false.
*/
function normalizePort(val) {
const port = parseInt(val, 10);
if (isNaN(port)) {
// named pipe
return val;
}
if (port >= 0) {
// port number
return port;
}
return false;
}
/**
* Event listener for HTTP server "error" event.
*/
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
// handle specific listen errors with friendly messages
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;
}
}
/**
* Event listener for HTTP server "listening" event.
*/
function onListening() {
const addr = server.address();
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}
1
https://gitee.com/idcf-boat-house/boathouse-calculator.git
git@gitee.com:idcf-boat-house/boathouse-calculator.git
idcf-boat-house
boathouse-calculator
boathouse-calculator
master

搜索帮助