Skip to content

Instantly share code, notes, and snippets.

@pasupulaphani
Last active December 27, 2015 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pasupulaphani/7386757 to your computer and use it in GitHub Desktop.
Save pasupulaphani/7386757 to your computer and use it in GitHub Desktop.
test
var http = require('http')
var server = http.createServer(function(req, res) {
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("hello \n")
setTimeout(function() {
res.end("world \n")
}, 2000);
});
server.listen(8000);
console.log("server is running on port 8000");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment