Guest User

Untitled

a guest
Jul 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var http = require('http');
  2.  
  3. for (var i = 0; i < 10; i++) {
  4. http.get({
  5. host: 'localhost',
  6. port: 80,
  7. path: '/',
  8. }, function(res) {
  9. console.log(res.statusCode);
  10. }).on('error', function(e) {
  11. console.log(e.message);
  12. });
  13. }
Add Comment
Please, Sign In to add comment