changeling

0.1.6 • Public • Published

changeling

changeling is a readable stream that watches a file for changes and then outputs its contents.

Build status

Install

npm install changeling

Example

var changeling = require('changeling')
var file = changeling('/path/to/file')
 
file.pipe(process.stdout)
 
// Stop watching after 10 seconds
setTimeout(function() {
  file.close()
}, 10000)

Note

If a file is deleted while being watched, an error will be emitted from the relevant changeling object.

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.6
    0
    • latest

Version History

Package Sidebar

Install

npm i changeling

Weekly Downloads

0

Version

0.1.6

License

MIT

Last publish

Collaborators

  • michaelrhodes