nsfw-watcher

File system watcher based on NSFW that emits add/change/rename/unlink events.


Keywords
file-system, watcher, nsfw, add, change, rename, unlink
License
MIT
Install
npm install nsfw-watcher@1.0.1

Documentation

NSFW Watcher

File system watcher based on NSFW that emits add/change/rename/unlink events.

Install

npm install --save nsfw-watcher

API

This library provides the following interface:

type Options = {
  debounceMS?: number,
  errorCallback?: Function
};

type Handlers = {
  add?: ( filePath: string ) => void,
  change?: ( filePath: string ) => void,
  rename?: ( prevFilePath: string, nextFilePath: string ) => void,
  unlink?: ( filePath: string ) => void
};

type Listener = {
  start (): Promise<void>,
  stop (): Promise<void>
};

function watcher ( path: string, options: Options, handlers: Handlers ): Promise<Listener>;

Usage

import watcher from 'nsfw-watcher';

const handlers = {
  add ( filePath ) { /* ... */ },
  change ( filePath ) { /* ... */ },
  rename ( prevFilePath, nextFilePath ) { /* ... */ },
  unlink ( filePath ) { /* ... */ }
};

watcher ( '/Users/fabio/Desktop', {}, handlers );

License

MIT © Fabio Spampinato