1.0.0 • Published 9 years ago

reactive-glob v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

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?

  1. Because no js implementation I've seen so far worked.
  2. The docs; Bash globbing is well documented.