package hyper
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=887c4ea30dd09474f68f7e6a1232ad9244f4826943158c8e0a9322cbf47c83a1
md5=214f88044d1589314ba4d2bb248a9633
Description
README
README.md
Hyper
Straightforward, full-featured Web client that composes with Dream.
Lwt_main.run begin
let%lwt response = Hyper.get "http://google.com" in
print_string response;
Lwt.return_unit
end
Note: the client is not actually full-featured yet :) This README is also an extremely rough sketch :) This repository is a work in progress
Hyper is the client counterpart to Dream, the Web server framework. Hyper uses the same types and the same programming model. Like Dream, Hyper offers one module, which features a bunch of easy-to-use functions. Also like Dream, Hyper still exposes the underlying highly composable functions, for full customization.
Documentation
At the moment, Hyper offers only three main "stable" values:
Hyper.get : string -> string promise
Hyper.post : string -> string -> string promise
Hyper.websocket : string -> websocket promise
These support all the same Web protocols as Dream: HTTP/1, HTTP/2, TLS, and WebSocket, and they follow redirects. The protocols are selected using URI schemes:
Hyper.get "http://google.com"
Hyper.post "https://some.app/endpoint" "{}"
Hyper.websocket "ws://some.site/socket"
You can see early usage in the examples.
These are actually wrappers around a "stack" of request -> response promise
handlers and client-side middlewares, but the elements of that stack are not mature enough to expose yet. They will eventually be exposed to quickly build custom clients with any desired behavior.
For testing WebSockets, Hyper offers an interface similar to the one in Dream:
Hyper.send : websocket -> string -> unit promise
Hyper.receive : websocket -> string option promise
Hyper.close_websocket : websocket -> unit promise
Composability
A Hyper client and a Dream server have exactly the same type, request -> response promise
.
This means that the client's lowest layer can be implemented by swapping out connecting over the network by a direct call to an in-process Dream server, which can be useful for no-network testing.
Conversely, a Dream server can pass the requests it receives to a Hyper client, thus acting as a proxy. Responses received from the proxy client can be directly returned by the server to its client.
In all cases, all body streams and WebSockets get forwarded automatically as a side effect of the conventions followed by Hyper and Dream.
Roadmap
[ ] Restore connection pooling and multiplexing.
[ ] 🛑 Server certificate validation.
[ ] File uploads (multipart streams).
[ ] Cookie store.
[ ] Redirect cache.
[ ] Automatic decompression.
[ ]
wss://
(WebSockets over TLS).[ ] Many miscellania.
Contact
Open an issue, or visit...
#dream on the Reason Discord.
#webdev on the OCaml Discord
The OCaml Discuss forum.
Highlight @antron
to poke @aantron specifically.
Contributing
To work on Hyper, clone Dream and Hyper into a single Dune workspace:
mkdir my-directory
cd my-directory
touch dune-workspace
git clone --recursive https://github.com/aantron/dream.git
git clone https://github.com/aantron/hyper.git
cd hyper
Acknowledgements
As with Dream, Hyper makes extensive use of the http/af-like Web protocol stack by Antonio Nuno Monteiro.
Dependencies (8)
- uri
-
ocaml
>= "4.08.0"
-
mirage-crypto-rng-lwt
< "1.0.0"
-
mirage-crypto-rng
< "1.0.0"
- lwt_ppx
-
dune
>= "2.7.0"
-
dream-pure
>= "1.0.0~alpha2"
-
dream-httpaf
>= "1.0.0~alpha2" & < "1.0.0~alpha3"
Dev Dependencies (3)
-
ppx_expect
with-test
-
dream
with-test
-
bisect_ppx
with-test & >= "2.5.0"
Used by
None
Conflicts
None