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
- Host: GitHub
- URL: https://github.com/dckt/rescript-bindings-template
- Owner: DCKT
- Created: 2024-02-17T08:05:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-21T03:59:35.000Z (about 1 year ago)
- Last Synced: 2025-02-11T13:27:09.971Z (3 months ago)
- Language: ReScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```