0.2.1 • Published 12 years ago

fs-watcher v0.2.1

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

watcher

Based upon Mikeal Rogers' watch library.

Watch a file tree and emit appropriate events for various changes. Extends EventEmitter. Uses FS.watch to monitor files for change, and re-scans directories periodicly to detect new creations and deletions.

Polling allows watcher to function on most operating systems where FS.watch or FS.watchFile are not fully supported or have inconsistant behavior. FS.watch is still used to monitor file changes asynchronously.

##Class: Watch

  • constructor({object}options) options:
    • root: top-level folder to watch
    • refresh: interval to
  • start(): Start the watcher
  • stop(): Stop the watcher

WatchEvent

  • path: Path of the affected node relative to the watch tree root
  • dir: boolean, indicates whether or not the node is a folder

###Events Events emit a WatchEvent object

  • watching: Emitted whan a new file or folder is added to the watch list
  • create: Emitted when a new file is detected in the watched tree
  • change: Emitted when a file in the watch list is changed
  • delete: emitted when a file or folder is deleted from the watched tree

##Class: Search

  • constructor({object}options) options:
    • root: top-level folder to search in
    • filter: function(path) called for each path found in tree. Return true to emit path and search with in if directory
  • start(): Start traversing

###Events Events emit the canonical path of the located node

  • file: Emitted when a file node is located
  • folder: Emitted when a folder node is located
0.2.1

12 years ago

0.2.0

12 years ago

0.1.0

12 years ago