Guest User

Untitled

a guest
Jun 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. http.createServer(function (req, res) {
  2. req.addListener("end",function(){
  3. sys.puts("request end");
  4. });
  5. res.writeHead(200, {'Content-Type': 'text/plain'});
  6. res.write('Hello World');
  7. res.close();
  8. }).listen(8006);
Add Comment
Please, Sign In to add comment