Advertisement
Guest User

Untitled

a guest
Dec 24th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var net = require('net');
  2.  
  3. setTimeout(function () {
  4.     net.connect(80, '93.184.216.34', function () { // example.com
  5.         console.log('connect', new Date());
  6.     });
  7. }, 60000);
  8.  
  9. console.log('start', new Date());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement