Skip to content

Instantly share code, notes, and snippets.

@sooop
Created August 12, 2013 05:12
Show Gist options
  • Save sooop/6208368 to your computer and use it in GitHub Desktop.
Save sooop/6208368 to your computer and use it in GitHub Desktop.
node.js sample
var http = require('http');
var server = http.createServer();
server.on('request', function(req, res) {
res.writeHead(200);
res.write('hello world');
res.end();
})
server.listen(8088, function(){
console.log("listening 8088... > http://localhost:8088");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment