yawatch
Yet another file tree watcher/monitor that just works.
API Usage Example
var monitor = ; monitor;
API
.createMonitor()
monitor.stat(array || string, callback)
monitor.reset()
monitor.destroy()
monitor.numPaths
monitor.numStatErrors
monitor.numReaddirErrors
monitor.numWatchErrors
Commandline Tool
Install
$ npm install yawatch -g
Usage
$ yawatch --helpUsage: yawatch [files and/or folders ...] Options: --help Prints this help. [boolean] --exec Use exec instead of spawn to run the command. [boolean] --on-any Command to execute on any event. [string] --on-create Command to execute when a file/folder was created. [string] --on-change Command to execute when a file/folder did change. [string] --on-remove Command to execute when a file/folder was removed. [string] --append-event Append the event to the arguments of the command. [boolean] --append-path Append the pathname to the arguments of the command. [boolean]
Tests
$ npm test
MIT License
Copyright (c) 2012 Oliver Leics oliver.leics@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.