https://github.com/ratson/deno_watchman
A port of fb-watchman running on Deno
https://github.com/ratson/deno_watchman
deno typescript watchman
Last synced: about 2 months ago
JSON representation
A port of fb-watchman running on Deno
- Host: GitHub
- URL: https://github.com/ratson/deno_watchman
- Owner: ratson
- License: mit
- Created: 2021-04-14T14:03:49.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-26T03:54:51.000Z (over 4 years ago)
- Last Synced: 2026-04-08T00:18:50.126Z (2 months ago)
- Topics: deno, typescript, watchman
- Language: TypeScript
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_watchman
## Usage
```ts
import Watchman from "https://deno.land/x/watchman/mod.ts";
const watchman = new Watchman();
console.log(await watchman.check();
client.end();
```
```ts
import { Client } from "https://deno.land/x/watchman/mod.ts";
const client = new Client();
console.log(
await client.capabilityCheck({ optional: [], required: ["relative_root"] }),
);
client.end();
```