4.0.1 • Published 7 years ago

@mesopo/http v4.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

simple http library for reason/ocaml

#example

let getUser =Http.get("https://api.example.com/user");


getUser @@ fun
  | Error(TimeOut) => Js.log("TIMEOUT")
  | Error(NetworkError) => 
    Js.log("NETWORK ERROR. Are you connected to the internet?")
  | Error(BadResponse(response)) => handleError(statusCode, body)
  | Ok(response) => userFetched(response.body |> parseUser);
4.0.1

7 years ago

4.0.0

7 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.0.2

7 years ago