@dck/rescript-ky-promise
v1.0.0
Published
ReScript bindings for ky HTTP client with rescript-promise
Downloads
3
Maintainers
Readme
rescript-ky-promise
ReScript bindings for ky HTTP client (targeted version : ~1.2.0
) with rescript-promise module.
Setup
- Install the module
bun install @dck/rescript-ky-promise
# or
yarn install @dck/rescript-ky-promise
# or
npm install @dck/rescript-ky-promise
- Add it to your
rescript.json
config
{
"bsc-dependencies": ["@dck/rescript-ky-promise"]
}
Usage
The functions can be accessed through Ky
module.
type data = {anything: string}
let fetchSomething = async () => {
try {
let response: data = await Ky.fetch("test", {prefixUrl: "https://fake.com", method: GET}).json()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
Use shortcut method :
type data = {anything: string}
let fetchSomething = async () => {
try {
let response: data = await Ky.get("test", {prefixUrl: "https://fake.com"}).json()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
Instance
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")).json()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}
Extend
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")).json()
// handle response data
} catch {
| JsError(err) => {
// handle err
Js.log(err)
}
}
}