filemon

1.0.0 • Public • Published

filemon

filemon emits an event containing data for files it is configured to watch.

Usage:

var Filemon = require('./index');
var filemon = new Filemon({
  files: [
  '/proc/vmstat'
  ],
  schedule: '0 * * * * *' // first second of every minute
});

filemon.on('data', function(data){
  console.log('data:',data);
});

filemon.start();

Output:

{
  "/proc/vmstat": "...contents of file"
}

Package Sidebar

Install

npm i filemon

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • niahmiah