From a72ac8ab60219b098c5ad09896af7e6749a9b1ef Mon Sep 17 00:00:00 2001 From: JP Richardson Date: Tue, 23 Dec 2014 15:22:55 -0600 Subject: [PATCH] readme: removed roadmap; file walker will be included, file watching will not for now. Chokidar is now default recommendation --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9206e4d..f40907e 100644 --- a/README.md +++ b/README.md @@ -317,19 +317,14 @@ var fs = Promise.promisifyAll(require("fs-extra")) If you like TypeScript, you can use `fs-extra` with it: https://github.com/borisyankov/DefinitelyTyped/tree/master/fs-extra -### Misc. - -- [mfs](https://github.com/cadorn/mfs) - Monitor your fs-extra calls. +### File / Directory Watching +If you want to watch for changes to files or directories, then you should use [chokidar](https://github.com/paulmillr/chokidar). -Roadmap --------- - -This contains items that I'm considering doing. I'd love community feedback. +### Misc. -* File system walker. I really like this one: https://github.com/daaku/nodejs-walker ... this might be adding too much. Thoughts? -* File/directory tree watcher. There are quite a few. ... this also might be adding too much. I like this one: https://github.com/paulmillr/chokidar, thoughts? +- [mfs](https://github.com/cadorn/mfs) - Monitor your fs-extra calls.