2021-04-04 14:44:43 +03:00
2021-04-04 13:48:51 +03:00
2021-04-04 01:55:05 +03:00
2021-03-28 22:12:28 +03:00
2021-03-22 10:40:36 +03:00
2021-03-27 12:55:06 +03:00
2021-03-14 21:23:27 +03:00
2021-03-09 17:59:32 +03:00
2021-04-04 14:38:44 +03:00

Dream (project and README WIP)

Dream is an easy-to-use, feature-complete Web framework without any boilerplate.

let hello who =
  <html>
    <body>
      <h1>Hello, <%s who %>!</h1>
    </body>
  </html>

let () =
  Dream.run
  @@ Dream.logger
  @@ Dream.router [
    Dream.get "/" (fun _ -> Dream.respond (hello "world"));
  ]
  @@ Dream.not_found

All of Dream is one flat module, in one package, dream. Included are:


Every part of the API is arranged to be easy to use, understand, and remember. Dream sticks to base OCaml types like string and list, introducing only a few types of its own — and some of those are just abbreviations for bare functions!

The neat interface is not a limitation. Everything is still configurable by a large number of optional arguments. Where necessary, Dream exposes the lower-level machinery that it is composed from. For example, the default body and WebSocket readers return strings, but you can also do zero-copy streaming.

You can even run Dream as a quite bare abstraction over its underlying set of HTTP libraries, where it acts only as minimal glue code between their slightly different interfaces and takes care of horridness like ALPN.


Documentation

  • Dream has several dozen Examples, each of which is a complete project in the public domain.

  • The first examples make up a Tutorial. Visit to see the full list and start wherever you like, or begin at 1-hello, the Dream version of Hello, world!

  • See the API documentation.


Getting started

opam install dream

Acknowledgements

Dream is based on work by the authors and contributors of its many dependencies and their transitive dependencies. There are, however, several influences that cannot be discovered directly:


Roadmap

1.0.0~alpha1:

  • Finish more of the examples, cross-link everything.
  • Correct the cipher rotation envelope scheme.
  • Quick start script.

Then:

  • Optimizations: router, logger, microparsers (form data, etc.), fully zero-allocation streaming.
  • WebSocket and stream backpressure.
  • HTTP3/QUIC.
Description
Tidy, feature-complete Web framework
Readme 8.8 MiB
Languages
OCaml 93.5%
CSS 1.6%
Shell 1.5%
Makefile 0.9%
Reason 0.8%
Other 1.7%