Skip to content

Instantly share code, notes, and snippets.

@adenine
Created April 23, 2011 23:09
Show Gist options
  • Save adenine/939073 to your computer and use it in GitHub Desktop.
Save adenine/939073 to your computer and use it in GitHub Desktop.
Node.js Hello World Web Server
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200, {
'Content-type': 'text/plain'
});
res.end('Hello World');
});
server.listen(8000, "127.0.0.1");
console.log('Listening on http://127.0.0.1:8000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment