npm install tailf
git clone https://github.com/exos/node-tailf.git tailf
If you want install an specific version you can see the tags section: https://github.com/exos/node-tailf/tags. The new features has code in a own branch, you see the actual branches and pull it. (if you clone the repo).
Watch a file changes and return a buffer with the new added data, for watch logs, etc.
var tailf = require('tailf');
var watchinglog = new tailf.simpleTailf('my.log');
watchinglog.on('data', function (data) {
console.log('Data arrived: ' , data.toString());
});
Watching file and emit data splited by a string or regular expresion.
var tailf = require('tailf');
// emit a data event for once line
var watchinglog = new tailf.blockTailf('my.log',/\n/);
watchinglog.on('data', function (data) {
console.log('Data arrived: ' , data);
});