Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | %!s(int64=6) %!d(string=hai) anos | |
---|---|---|
.. | ||
test | %!s(int64=6) %!d(string=hai) anos | |
.npmignore | %!s(int64=6) %!d(string=hai) anos | |
.travis.yml | %!s(int64=6) %!d(string=hai) anos | |
LICENSE | %!s(int64=6) %!d(string=hai) anos | |
README.md | %!s(int64=6) %!d(string=hai) anos | |
index.js | %!s(int64=6) %!d(string=hai) anos | |
package.json | %!s(int64=6) %!d(string=hai) anos |
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");