Browse Source

Remove /bin/www

No need for a different start up file in this project. At least at the moment.
main
Haris Razis 4 years ago
parent
commit
2d91b8f599
No known key found for this signature in database GPG Key ID: 86A4D290ED03FAB4
  1. 56
      server/bin/www

56
server/bin/www

@ -1,56 +0,0 @@
#!/usr/bin/env node
const app = require('../index');
const debug = require('debug')('myapp:server');
const http = require('http');
const port = normalizePort(process.env.PORT || '3000');
app.set('port', port);
const server = http.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;
debug('Listening on ' + bind);
}
Loading…
Cancel
Save