kevin tessier 5f00dd9b15 first commit 6 年 前
..
test 5f00dd9b15 first commit 6 年 前
.npmignore 5f00dd9b15 first commit 6 年 前
.travis.yml 5f00dd9b15 first commit 6 年 前
LICENSE 5f00dd9b15 first commit 6 年 前
README.md 5f00dd9b15 first commit 6 年 前
index.js 5f00dd9b15 first commit 6 年 前
package.json 5f00dd9b15 first commit 6 年 前

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