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

https://github.com/dckt/rescript-ky

ReScript bindings for ky HTTP client
https://github.com/dckt/rescript-ky

Last synced: 5 months ago
JSON representation

ReScript bindings for ky HTTP client

Awesome Lists containing this project

README

          

# rescript-ky

ReScript bindings for [ky HTTP client](https://github.com/sindresorhus/ky) (targeted version : `~1.2.0`)

## Setup

1. Install the module

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

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

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

## Usage

The functions can be accessed through `Ky` module.

```rescript
type data = {anything: string}
type errorPayload = {
code: string
}

let fetchSomething = async () => {
try {
let response: data = await Ky.fetch("test", {prefixUrl: "https://fake.com", method: GET})->Ky.Response.jsonFromPromise()
// handle response data
} catch {
| JsError(err) => {
let errorResponse = (err->Ky.unkownToError).response->Option.getExn
let errorData: errorPayload = await errorResponse->Ky.Response.json()

switch (errorData.code) {
| "CODE_1" => () // do something
| _ => ()
}
}
}
}
```

Use shortcut method :

```rescript
type data = {anything: string}

let fetchSomething = async () => {
try {
let response: data = await Ky.get("test", {prefixUrl: "https://fake.com"})->Ky.Response.jsonFromPromise()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
```

### Instance

```rescript
let instance = Ky.Instance.create({prefixUrl: "https://fake.com"})

type data = {anything: string}

let fetchSomething = async () => {
try {
let response: data = await (instance->Ky.Instance.get("test"))->Ky.Response.jsonFromPromise()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
```

### Extend

```rescript
let instance = Ky.Instance.create({prefixUrl: "https://fake.com"})
let extendedInstance = instance->Ky.Instance.extend({
prefixUrl: `${mockBasePath}/extend`,
headers: Ky.Headers.fromObj({
"custom-header": "test",
}),
})

type data = {anything: string}

let fetchSomething = async () => {
try {
let response: data = await (extendedInstance->Ky.Instance.get("test"))->Ky.Response.jsonFromPromise()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
```