package cohttp-async

  1. Overview
  2. No Docs

Description

Join the chat at https://gitter.im/mirage/ocaml-cohttp

Cohttp is an OCaml library for creating HTTP daemons. It has a portable HTTP parser, and implementations using various asynchronous programming libraries:

  • Cohttp_lwt_unix uses the Lwt library, and specifically the UNIX bindings.
  • Cohttp_async uses the Async library.
  • Cohttp_lwt exposes an OS-independent Lwt interface, which is used by the Mirage interface to generate standalone microkernels (use the cohttp-mirage subpackage).
  • Cohttp_lwt_xhr compiles to a JavaScript module that maps the Cohttp calls to XMLHTTPRequests. This is used to compile OCaml libraries like the GitHub bindings to JavaScript and still run efficiently.

You can implement other targets using the parser very easily. Look at the IO signature in lib/s.mli and implement that in the desired backend.

You can activate some runtime debugging by setting COHTTP_DEBUG to any value, and all requests and responses will be written to stderr. Further debugging of the connection layer can be obtained by setting CONDUIT_DEBUG to any value.

Tags

org:mirage org:xapi-project

Published: 07 Jan 2018

Dependencies (9)

  1. uri < "2.0.0"
  2. fmt >= "0.8.2"
  3. logs
  4. magic-mime
  5. async >= "v0.10.0" & < "v0.12"
  6. conduit-async >= "1.0.3"
  7. cohttp >= "1.0.2"
  8. jbuilder >= "1.0+beta10"
  9. ocaml >= "4.03.0"

Dev Dependencies (1)

  1. ounit with-test

Conflicts

None