Guest User

Untitled

a guest
Jan 14th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var http = require('http');
  2. http.createServer(function(req, res) {
  3. res.writeHead(200, {
  4. 'Content-Type': 'text/html'
  5. });
  6.  
  7. res.write('first chunk');
  8.  
  9. setTimeout(function () {
  10. res.end('after 2000 ms. this line will appear');
  11. }, 2000);
  12. }).listen(process.env.C9_PORT, "0.0.0.0");
Add Comment
Please, Sign In to add comment