Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi il y a 6 ans
..
test cefd1c2ad0 updated sys and created publi il y a 6 ans
.npmignore cefd1c2ad0 updated sys and created publi il y a 6 ans
.travis.yml cefd1c2ad0 updated sys and created publi il y a 6 ans
LICENSE cefd1c2ad0 updated sys and created publi il y a 6 ans
README.md cefd1c2ad0 updated sys and created publi il y a 6 ans
index.js cefd1c2ad0 updated sys and created publi il y a 6 ans
package.json cefd1c2ad0 updated sys and created publi il y a 6 ans

README.md

glob-watcher NPM version Build Status Coveralls Status Dependency Status

Information

Packageglob-watcher
Description Watch globs
Node Version >= 0.9

Usage

var watch = require('glob-watcher');

// callback interface
watch(["./*.js", "!./something.js"], function(evt){
  // evt has what file changed and all that jazz
});

// EE interface
var watcher = watch(["./*.js", "!./something.js"]);
watcher.on('change', function(evt) {
  // evt has what file changed and all that jazz
});

// add files after it has been created
watcher.add("./somefolder/somefile.js");