0.3.0 • Published 11 years ago

follow-file v0.3.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

follow-file

This module is designed to follow a file which is being appended to by something like a syslog server. It will reopen the file if the file is truncated.

Example

This module comes with a small command which will follow the file, this is used for demonstration and testing purposes.

follow-file -f /var/log/syslog

API

As illustrated in the following example program this module can be used as an endless stream. Note in this example I am using through to inject new lines for presentations sake.

ff(argv.file).stream.pipe(through(function write(data) {
     log('data', data)
     this.emit('data', data + '\n')
   },
   function end() { //optional
     log('end')
     this.emit('end')
   }))
   .pipe(process.stdout)

Copyright © 2013 Mark Wolfe

MIT License

0.3.0

11 years ago

0.2.4

11 years ago

0.2.3

11 years ago

0.2.2

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago