Eio HTTP server with static file serving and route handlers
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+23 -2
+12 -1
README.md
··· 8 8 9 9 ## Installation 10 10 11 + Install with opam: 12 + 13 + ```sh 14 + $ opam install respond 11 15 ``` 12 - opam install respond 16 + 17 + If opam cannot find the package, it may not yet be released in the public 18 + `opam-repository`. Add the overlay repository, then install it: 19 + 20 + ```sh 21 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 22 + $ opam update 23 + $ opam install respond 13 24 ``` 14 25 15 26 ## Usage
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries respond eio_main))
+5 -1
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name respond) 3 4 (license ISC) 4 5 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") ··· 19 20 eio 20 21 logs 21 22 magic-mime 22 - fmt)) 23 + (mdx :with-test) 24 + fmt 25 + (eio_main :with-test)) 26 + )
+2
respond.opam
··· 14 14 "eio" 15 15 "logs" 16 16 "magic-mime" 17 + "mdx" {with-test} 17 18 "fmt" 19 + "eio_main" {with-test} 18 20 "odoc" {with-doc} 19 21 ] 20 22 build: [