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

https://github.com/dckt/rescript-bindings-template

Github template for rescript bindings
https://github.com/dckt/rescript-bindings-template

Last synced: about 1 month ago
JSON representation

Github template for rescript bindings

Awesome Lists containing this project

README

        

# rescript-

ReScript bindings for [](https://github.com/X/Y) (targeted version : `~X.X.X`)

## Setup

1. Install the module

```bash
bun install @dck/rescript-
# or
yarn install @dck/rescript-
# or
npm install @dck/rescript-
```

2. Add it to your `rescript.json` config

```json
{
"bs-dependencies": ["@dck/rescript-"]
}
```

## Usage

The functions can be accessed through `X` module.

## Development

Install deps

```bash
bun install
```

Compiles files

```bash
bun run dev
```

Run tests

```bash
bun test
```