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

https://github.com/ganyariya/derain

deno with rain...
https://github.com/ganyariya/derain

cli deno deno-cli

Last synced: 11 months ago
JSON representation

deno with rain...

Awesome Lists containing this project

README

          

# derain

[![deno.land](https://img.shields.io/badge/deno-%5E1.13.2-green?logo=deno)](https://deno.land)
[![LICENSE](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)
[![tag](https://img.shields.io/github/v/tag/ganyariya/derain?sort=semver)](https://github.com/ganyariya/derain/tags)

deno with rain...



## Usage

**CLI**

```shell
deno install --allow-run --force --name derain https://github.com/ganyariya/derain/raw/v1.0.6/cli.ts

derain
derain --help
```

**Module** (Example)

```typescript
import { render } from "https://github.com/ganyariya/derain/raw/v1.0.6/cli.ts";

for await (const content of render(0.05, 0.002)) {
console.clear();
console.log(content);
}
```