Skip to content

Instantly share code, notes, and snippets.

@jdub
Created January 21, 2011 07:11
Show Gist options
  • Save jdub/789347 to your computer and use it in GitHub Desktop.
Save jdub/789347 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200,
{'Content-Type': 'text/plain'});
res.end('Hello world!\n');
}).listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment