Skip to content

Instantly share code, notes, and snippets.

Created January 6, 2013 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4465656 to your computer and use it in GitHub Desktop.
Save anonymous/4465656 to your computer and use it in GitHub Desktop.
node server
var http = require('http');
var port = process.env.PORT || 4000;
function start(){
function onRequest(req, res){
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("FortuneFold");
res.end();
}
var server = http.createServer();
server.on('request', onRequest);
server.listen(port, function(){
if(process.send){
process.send('listening');
}
});
console.log('Server listening on port 4000');
}
exports.start = start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment