Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created November 9, 2015 06:29
Show Gist options
  • Save nurfarazi/b7faef279d3a9d1747e9 to your computer and use it in GitHub Desktop.
Save nurfarazi/b7faef279d3a9d1747e9 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.write('hello\n');
setTimeout(function(){
res.end('world\n');
},2000);
}).listen(8000, '127.0.0.1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment