Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var http = require("http");
  2.  
  3. http.createServer(function(req, res){
  4. res.writeHead(200, {"Content-Type": "text/html"});
  5. setTimeout(function(){
  6. res.end("Hello, world!")
  7. },1000)
  8. }).listen(8000);
Add Comment
Please, Sign In to add comment