An open API service indexing awesome lists of open source software.

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

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();
```