| 
				
					 | 
			hace 7 años | |
|---|---|---|
| .. | ||
| test | hace 7 años | |
| .npmignore | hace 7 años | |
| .travis.yml | hace 7 años | |
| LICENSE | hace 7 años | |
| README.md | hace 7 años | |
| index.js | hace 7 años | |
| package.json | hace 7 años | |
 
 
 
| Package | glob-watcher | 
| Description | Watch globs | 
| Node Version | >= 0.9 | 
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");