0.1.0 • Published 8 years ago

zkflow-watcher v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

zkflow-watcher

Zkflow watcher watches files for you and runs provided asynchronous function when this files changes. It prevents function to run more than once at a time and prevents building up run queue.

Made by Zaklinacze Kodu

Shields

npm npm npm Travis Code Climate David David GitHub forks GitHub stars GitHub followers

Installation

npm install --save zkflow-watcher

API

require('zkflow-watcher').watch(task, isWatching, globs, logger);
  • task - asynchronous function, witch return promise;
  • isWatching - true or false. When false task will be run only once and then it will exit.
  • globs - globs that will be passed to gulp-watch
  • logger - logger from gulp-zkflow-utils