reactive-glob
v1.0.0
Published
Glob pattern watcher using standart environment tools (e.g. bash globbing on linux).
Downloads
4
Readme
reactive-glob
Glob pattern watcher using standart environment tools (e.g. bash globbing on linux).
Usage
Basic usage
var ReactiveGlob = require("reactive-glob");
var stream = new ReactiveGlob("files/**/*.js");
stream.pipe(yourOtherStream);
FAQ
Why would you want to use a timeout and exec based glob watcher?
- Because no js implementation I've seen so far worked.
- The docs; Bash globbing is well documented.