I'm using file system native library of nodejs, but i have problems with fs.watch, high amount of watchers is open, and sometimes node returns ENOSPC error, i localize the problem with linux kernel to open watchers and find that the dropbox app was eating a lot of watchers. My question is, if you know another file system libraries for node that works fine with the file system.
The answer could be find in this post: Node.JS: How does "fs.watchFile" work? i'm going to try if node-inotify-plusplus may helps in my case.