jprichardson / node-klaw

A Node.js file system walker with a Readable stream interface. Extracted from fs-extra.
MIT License
317 stars 41 forks source link

Switch to graceful-fs to avoid EMFILE #10

Closed RyanZim closed 8 years ago

RyanZim commented 8 years ago

graceful-fs is an optional dep; klaw uses the normal fs module if graceful-fs can't be loaded.

Fixes https://github.com/jprichardson/node-fs-extra/issues/275.

jprichardson commented 8 years ago

Perfect, thank you!