hyper icon indicating copy to clipboard operation
hyper copied to clipboard

OCaml Web client, composable with Dream [unannounced]

Results 8 hyper issues
Sort by recently updated
recently updated
newest added

Some of implemented features: - Handle arguments specifying form data, query, HTTP headers and JSON data - Prettify and color format output JSON response body - Read request body from...

I saw that successfull is defined in dream like ``` type successful = [ | `OK | `Created | `Accepted | `Non_Authoritative_Information | `No_Content | `Reset_Content | `Partial_Content ] ```...

I am using dream to call hyper to make requests to Turso over http. When I send get or post requests, I get this: ``` 27.02.24 05:51:45.557 dream.log INFO REQ...

I tried this example : https://github.com/aantron/hyper/blob/master/example/2-post/post.ml and also a simple program which only do a post request to a personal local server, i always get `Fatal error: exception Unix.Unix_error(Unix.ECONNREFUSED, "connect",...

When running the following request: ```ocaml let () = let _ = Lwt_main.run @@ Hyper.get "https://medium.com:443/feed/ahrefs/tagged/ocaml" in () ``` I'm seeing the following error: ``` Fatal error: exception SSL connection()...

Again 🙂 . However, for the client part of the HTTP protocol, the MirageOS is slightly more complex. Indeed, a `connect` function which allocates a resource (such as a _socket_)...

`mirage-crypto` no longer uses `Cstruct`, so this commit is a quick and dirty way to get `hyper` to compile with the latest `dream` dependencies

Hello, I observed a leak on file descriptors with a software using Hyper. Looking at the code, the body function does not seem to issue a Message.close, nor does the...