Guest User

Untitled

a guest
Jan 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. Tail = require('tail').Tail;
  2.  
  3. tail = new Tail("fileToTail");
  4.  
  5. tail.on("line", function(data) {
  6. console.log(data);
  7. });
Add Comment
Please, Sign In to add comment