rescript-react-fetch

0.1.0 • Public • Published

rescript-react-fetch

Zero-cost binding for react-fetch

Installation

Run the following in your favorit console:

Don't forget install peer-dependencies react-fetch

> yarn add rescript-react-fetch  

OR

> npm install --save rescript-react-fetch 

Then, add rescript-react-fetch in your bsconfig.json:

-- "bs-dependencies": [],
++ "bs-dependencies": [rescript-react-fetch],

Usage

let url = "https://api.github.com/v3/user/ri7nz"

let data = url->ReactFetch.fetch->ReactFetch.json

let _ = url->ReactFetch.preload

Or you can check this Example: dev__reactfetch.

API

react-fetch current state is UNSTABLE, current API maybe changes!

ReactFetch.fetch(string)

  • Return response

ReactFetch.preload(string)

  • Return unit

ReactFetch.json(response)

  • Return Js.Json.t

ReactFetch.arrayBuffer(response)

  • Return Js.TypedArray2.ArrayBuffer.t

ReactFetch.text(response)

  • Return string

Package Sidebar

Install

npm i rescript-react-fetch

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

25.7 kB

Total Files

27

Last publish

Collaborators

  • ri7nz