Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created May 10, 2013 16:08
Show Gist options
  • Save pbrewczynski/5555422 to your computer and use it in GitHub Desktop.
Save pbrewczynski/5555422 to your computer and use it in GitHub Desktop.
var http = require('http');
var s = http.createServer(function(req, res) {
res.writeHead(200, {'content-type' : 'text/plain'});
res.write("hello");
setTimeout(function () {
res.end("world");
},2000);
});
s.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment