Skip to content

Instantly share code, notes, and snippets.

Created October 13, 2010 02:24
Show Gist options
  • Save anonymous/623310 to your computer and use it in GitHub Desktop.
Save anonymous/623310 to your computer and use it in GitHub Desktop.
http.createServer(function (req, res) {
req.addListener("end",function(){
sys.puts("request end");
});
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Hello World');
res.close();
}).listen(8006);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment