A smart wrapper for chokidar to facilitate file watching with enhanced features.
Go to file
2019-06-04 13:59:54 +02:00
test fix(core): update 2019-06-04 13:59:54 +02:00
ts fix(core): update 2019-05-05 20:54:02 +02:00
.gitignore fix(core): update 2019-06-04 13:59:54 +02:00
.gitlab-ci.yml fix(core): update 2019-06-04 13:59:54 +02:00
.snyk fix(core): update 2018-10-10 17:06:40 +02:00
npmextra.json fix(core): update 2019-06-04 13:59:54 +02:00
package-lock.json fix(core): update 2019-06-04 13:59:54 +02:00
package.json fix(core): update 2019-06-04 13:59:54 +02:00
README.md fix(core): update 2019-06-04 13:59:54 +02:00
tslint.json fix(core): update 2019-06-04 13:59:54 +02:00

@pushrocks/smartchok

smart wrapper for chokidar

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import { Smartchok } from 'smartchok';

let mySmartChok = new Smartchok(['some/path/**/*.any', '/absolute/*.js'], chokidarOptions);

mySmartChok.add(['/some/**/*.any']); // add files

mySmartChok.remove('some/**/*.js');

mySmartChok.start(); // starts the watch process

mySmartChok.getObservableFor('change').then(observableArg => {
  observableArg.subscribe(x => {
    // do something here when a change is detected
    // possible events are 'add' | 'addDir' | 'change' | 'error' | 'unlink' | 'unlinkDir' | 'ready' | 'raw'
    // note that the observable is only created once you call .start() on the Smartchok instance
    // hence the promise construction
  });
});

mySmartChok.stop();

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer