peep
v0.1.1
Published
Peep is a smart fs.watch wrapper which is lighter and faster, uses as less fs.FSWatchers as possible, and could prevent duplicate watching.
Downloads
22
Readme
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 = require('peep')();
peep
.on('all', function(event, path){
console.log(event, path);
})
.add('test/foo.js')
.add('test') // '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 = require('globule');
peep.add( globule.find('test/**/*.js') );
Methods
peep.add(path[, path, ...])
peep.add(paths)
Adds file(s) or directories to be watched
peep.add('test/foo.js', 'test/foo2.js');
peep.add(['test/foo.js', 'test/foo2.js']);
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()
Returns Array.<String>
The current watched files.
Events
What's coming...