0.1.0 • Published 11 years ago

a_watcher v0.1.0

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

AWatcher, watches the given directory, subdirectories and files for events

by Amit Marcus - 2013 - enjoy - MIT License and such.

example:

var AWatcher = require('a_watcher');
var aWatcher = new AWatcher('path/to/watch', function(event, item){
    if (event === 'change'){
        console.log(item + ' was just changed!');
    }
});

methods & more:

aWatcher.close()     # stops the watcher
aWatcher.list        # array of watched items
aWatcher.watchers    # object that holds {item: fs.FSWatcher}

notice:

for directories it will trigger 'add'/'remove' and for files it will also trigger 'change'

install:

npm install a_watcher

0.1.0

11 years ago