0.0.1 • Published 11 years ago

inotifywatch v0.0.1

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

inotifywatch

File/folder watcher based on inotify.

Install

npm install inotifywatch

Example

var inotifywatch = require('inotifywatch');

/* watcher is an EE */

var watcher = inotifywatch('.', function (event, data) {
  // you can use a callback here to capture all events
  console.log(event, data);
});
// or register for events
watcher.on('create', function (data) {
  if (data === 'close.txt')
    watcher.close();
});