Skip to content

Instantly share code, notes, and snippets.

@tim-kos
Created February 25, 2014 14:51
Show Gist options
  • Save tim-kos/2acb5589b33403cad80b to your computer and use it in GitHub Desktop.
Save tim-kos/2acb5589b33403cad80b to your computer and use it in GitHub Desktop.
var http = require('http');
var server = http.createServer(function(req, res) {
setTimeout(function() {
res.writeHead(200);
res.end("hello world8\n");
}, 1000);
});
server.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment