Skip to content

Instantly share code, notes, and snippets.

@dustinc
Created July 31, 2012 17:49
Show Gist options
  • Save dustinc/3218910 to your computer and use it in GitHub Desktop.
Save dustinc/3218910 to your computer and use it in GitHub Desktop.
Node.js Hello World
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello World');
});
server.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment