An open API service indexing awesome lists of open source software.

https://github.com/davidbooth/livetail

Node.js implementation for tailing a file. Like tail -f
https://github.com/davidbooth/livetail

Last synced: about 1 month ago
JSON representation

Node.js implementation for tailing a file. Like tail -f

Awesome Lists containing this project

README

          

livetail
========

Node.js implementation for tailing a file. Like tail -f

#Setup:
```
var livetail = require("livetail").livetail;
var tail = new livetail('testfile.txt');
```

#Usage:
```
tail.on('data',function(data){
console.log(data);
});
```
#Live Streaming Log with Socket.io Example:
Checkout the example folder.