Skip to content

Instantly share code, notes, and snippets.

@DimitryDushkin
Created February 16, 2016 08:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DimitryDushkin/83f11487779284b44235 to your computer and use it in GitHub Desktop.
Save DimitryDushkin/83f11487779284b44235 to your computer and use it in GitHub Desktop.
node.js delayed web-server response example
var http = require('http');
var s = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Hello\n');
setTimeout(function() {
res.end(' World\n');
}, 5000);
});
s.listen(8080);
console.log('Server running on http://localhost:8080/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment