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

Readme

Keywords

none

Package Sidebar

Install

npm i changeling

Weekly Downloads

3

Version

0.1.6

License

MIT

Last publish

Collaborators

  • michaelrhodes