UNPKG

tail-forever

Version:

a node.js library to implement tail -F

15 lines (11 loc) 238 B
Tail = require '../tail-forever.coffee' options = "start":0 "maxSize":52428800 "bufferSize":1048576 "encoding":"utf-8" # "maxLineSize" : 10 f = './test.log' t = new Tail(f, options) t.on 'line', (line) -> console.log line