Skip to content

Instantly share code, notes, and snippets.

@malikshubham827
Created July 25, 2017 06:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save malikshubham827/439cec7df328b12b1a40dcab550aef20 to your computer and use it in GitHub Desktop.
Save malikshubham827/439cec7df328b12b1a40dcab550aef20 to your computer and use it in GitHub Desktop.
This is regarding get-me-through project. Include this file in the bin folder in the root of your project. You would have a bin folder if you created virtual environment. If not create a bin folder and paste this file with the name "www" no extension should be attached to it.
#!/usr/bin/env node
/**
* Module dependencies.
*/
var app = require('../server/app');
var debug = require('debug')('my-app:server');
var http = require('http');
/**
* Get port from environment and store in Express.
*/
var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);
/**
* Create HTTP server.
*/
var server = http.createServer(app);
/**
* Socket.io
*/
app.io.attach( server );
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port);
server.on('error', onError);
server.on('listening', onListening);
/**
* Normalize a port into a number, string, or false.
*/
function normalizePort(val) {
var 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;
}
var 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() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
// Log on console to confirm correct execution
console.log(`Server listening on port: ${port}.`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment