José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | il y a 4 ans | |
---|---|---|
.. | ||
.npmignore | il y a 4 ans | |
.travis.yml | il y a 4 ans | |
LICENSE | il y a 4 ans | |
README.md | il y a 4 ans | |
index.js | il y a 4 ans | |
package.json | il y a 4 ans |
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");