nsfw-watcher

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

Usage no npm install needed!

<script type="module">
  import nsfwWatcher from 'https://cdn.skypack.dev/nsfw-watcher';
</script>

README

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