Peep
Peep is a smart fs.watch
wrapper which is lighter and faster. It uses as little fs.FSWatcher
s as possible, and can prevent duplicate watching.
Peep has a better .add()
method which can automatically detect nested structures between the current watched files and directories, and choose the best strategy to make it fast and use less resources.
Installation
npm install peep --save
Usage
var peep = ; peep // 'test' contains 'test/foo.js'
Peep doesn't depend on 'globule'
module. If you prefer the feature of globbing files, you could do this:
var globule = ; peep;
Methods
peep.add(path[, path, ...])
peep.add(paths)
Adds file(s) or directories to be watched
peep;peep;
peep.remove(path[, path, ...])
peep.remove(paths)
Removes file(s) or directories from being watched.
peep.remove()
Removes all watched files and directories.
peep.watched()
Array.<String>
Returns The current watched files.
Events
What's coming...