JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q27460F
  • License MIT

Filesystem watcher that spawns inotifywait.

Package Exports

  • inwatch
  • inwatch/lib/inwatch.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (inwatch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

inwatch

Filesystem watcher that spawns inotifywait

I made this because I needed a filesystem watcher that works with bun.

Example:

import watch from "inwatch"

const monitor = watch("/my/path", {
  recursive: true,
  exclude: "node_modules|\\.git",
  events: ["modify", "move", "create", "delete"],
  ignoreDuplicatesMs: 100,
})

monitor.on("all", ({ event, watchPath, eventPath }) => {
  console.log(`${event} event on ${watchPath} at ${eventPath}!`)
})