0.1.2 • Published 11 years ago

multi-watcher v0.1.2

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

Multi-watcher

Multi-watcher is a inter-process node.js module to manage multiple file watchers.

With multi-watcher, you could avoid duplicately watching a same file or directory because multi-watcher instances could share with each other even if they are in different processes.

Installation

npm install multi-watcher --save

Usage

var multi_watcher = require('multi-watcher');
var watcher = multi_watcher({
	data_file: 'data.js'
});

Methods

watcher.watch(patterns, callback)

watcher.unwatch(patterns, callback)