@miniflare/watcher
Advanced tools
Comparing version 2.0.0-rc.1 to 2.0.0-rc.2
{ | ||
"name": "@miniflare/watcher", | ||
"version": "2.0.0-rc.1", | ||
"version": "2.0.0-rc.2", | ||
"description": "File-system watcher module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers", | ||
@@ -39,7 +39,7 @@ "keywords": [ | ||
"dependencies": { | ||
"@miniflare/shared": "2.0.0-rc.1" | ||
"@miniflare/shared": "2.0.0-rc.2" | ||
}, | ||
"devDependencies": { | ||
"@miniflare/shared-test": "2.0.0-rc.1" | ||
"@miniflare/shared-test": "2.0.0-rc.2" | ||
} | ||
} |
@@ -5,2 +5,24 @@ # `@miniflare/watcher` | ||
[Miniflare](https://github.com/cloudflare/miniflare): a fun, full-featured, | ||
fully-local simulator for Cloudflare Workers | ||
fully-local simulator for Cloudflare Workers. | ||
## Example | ||
```js | ||
import { Watcher } from "@miniflare/watcher"; | ||
const watcher = new Watcher((changedPath) => { | ||
console.log(changedPath); // Absolute path logged on create, change, delete | ||
}); | ||
// Add recursive directory watcher | ||
await watcher.watch("./dir"); | ||
// Add file watchers | ||
await watcher.watch(["./file1.txt", "./file2.txt"]); | ||
// Remove watchers | ||
watcher.unwatch("./file1.txt"); | ||
// Remove all watchers | ||
watcher.dispose(); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13941
28
+ Added@miniflare/shared@2.0.0-rc.2(transitive)
- Removed@miniflare/shared@2.0.0-rc.1(transitive)
Updated@miniflare/shared@2.0.0-rc.2