Hey, an event driven file watcher for NodeJS with some sugar
Warning I: this project is in early development stage, you might not find it useful for now. It only works in Linux (2.6+) boxes (as it depends on libnotify to do most of the work).
Most of this lib is a wrapper around inotify with EventEmitter tied on.
Install from npm
$ npm install heyUsage
var Hey = require('hey').Hey;
var watch = new Hey({
path : '/path/to/something',
recursive : true | false [,
mask : Hey.FLAGS.DELETE | Hey.FLAGS... ]
});
watch.on('create', function(path, type, mask) {
// do what do you want cause a pirate is free ...
});
watch.on('EOB', function() {
console.log('sorry mate, you\'re watching too many files for now');
});API
Constructor
Hey constructor takes an object as parameter, and it contains the following keys:
path: the path to watch (required, obviously);recursive: in the case the path you choose is a folder, you can choose to watch it recursively. Optional, default not set;mask: the mask to listen to. Ex. if you want just to watch for new files, you use onlyHey.FLAGS.CREATEas mask. All available masks (forHey, notlibnotify) are listed in this document; Optional, default toHey.FLAGS.MODIFY | Hey.FLAGS.CREATE | Hey.FLAGS.DELETE | Hey.FLAGS.SELF_DELETE | Hey.FLAGS.MOVE | Hey.FLAGS.SELF_MOVE;
Warning II: activating recursive in a folder, you may run out of buffer (as it supports 1024 listeners). We do not plan to change this now as it required, on Linux, changing the ulimit fopen size and the source code of inotify.
Available events
The following events are available for use (but, most of them only work with folders):
EOB: fired when all available listeners are taken; perhaps you're watching too many files?any: fired when any path event occurs (exceptEOB);access: fired when a file is accessed;modify: fired when a file is modified;open: fired when a file is opened;close: fired when a file is closed;metadata: fired when the path attributes are modified;create: fired when a path is created;delete: fired when a path is deleted;self delete: fired when thepathfrom constructor is deleted;self move: fired when thepathfrom constructor is moved;move: fired when a path is moved;ignore: fired when an event is ignored (this event could happen if you use your ownmask);unknown: fired when an unknown event happens to a path (not really unknown, but not relevant to the moment IMHO).
Mask flags
Hey.FLAGS.ACCESSHey.FLAGS.MODIFYHey.FLAGS.OPENHey.FLAGS.CLOSEHey.FLAGS.METADATAHey.FLAGS.CREATEHey.FLAGS.DELETEHey.FLAGS.SELF_DELETEHey.FLAGS.SELF_MOVEHey.FLAGS.MOVEHey.FLAGS.IGNORE
Future
Our plan is to support all platforms in the future, as Node's fs.watch() evolves (seriously, do this kind of work on what it is now would be insane).
TODO
- better documentation of the source code;
- a real document page, examples, and so on;
- tests!
jsHint standardswe don't like code standards.
License
Copyright (C) 2012 Humantech
Distributed under the MIT License, the same as NodeJS.
Read this if you're in doubt.