AhMyth 9000392778 beta version 8 yıl önce
..
test 9000392778 beta version 8 yıl önce
.npmignore 9000392778 beta version 8 yıl önce
.travis.yml 9000392778 beta version 8 yıl önce
LICENSE 9000392778 beta version 8 yıl önce
README.md 9000392778 beta version 8 yıl önce
index.js 9000392778 beta version 8 yıl önce
package.json 9000392778 beta version 8 yıl önce

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");