Guest User

Untitled

a guest
Aug 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var net = require('net');
  2. var socket = net.createConnection(1337, '127.0.0.1', function() {
  3. socket.setEncoding('utf8');
  4. socket.on('data', console.log.bind(null, "Data arrived:\n"));
  5. setTimeout(function() {
  6. console.log("let's shut down a.js ...\nthrow new Error();");
  7. throw new Error();
  8. }, 5000);
  9. });
Add Comment
Please, Sign In to add comment