package http_async
Async library for HTTP/1.1 servers
Install
Dune Dependency
Authors
Maintainers
Sources
http_async-0.2.0.tbz
sha256=3ba4a210833e93a50ca2e539b38d29352f7c1b892fd7b7e89af4e788fafe905f
sha512=0bf256e969a49d45765f8b0e1a06d914c2bc45c4d6f4adc28ad4d2f68f52734b3de73e890a9b5501c8679fdca30191663372a5786e693d505b1640554068af94
README.md.html
Http_async
HTTP 1.1 server for async applications.
Installation
To use the version published on opam:
opam install http_async
For the development version:
opam pin add http_async.dev git+https://github.com/anuragsoni/http_async.git
Hello World
open! Core
open! Async
open Http_async
let () =
Command_unix.run
(Server.run_command ~summary:"Hello world HTTP Server" (fun addr (request, _body) ->
Log.Global.info
"(%s): %s"
(Socket.Address.Inet.to_string addr)
(Request.path request);
return (Response.create `Ok, Body.Writer.string "Hello World")))
;;
Routing?
Http_async doesn't ship with a router. There are multiple routing libraries available on opam and using Http_async
with them should be fairly easy. As an example, integration with ocaml-dispatch can be done as so:
open! Core
open! Async
open Http_async
let routes =
let open Dispatch in
DSL.create
[ ( "/hello/:name"
, fun params _rest ->
let name = List.Assoc.find_exn params ~equal:String.equal "name" in
return (Response.create `Ok, Body.Writer.string (sprintf "Hello, %s" name)) )
; ("/", fun _params _rest -> Response.create `Ok, Body.Writer.string "Hello World")
]
;;
let service _addr (request, body) =
let path = Request.path request in
match Dispatch.dispatch routes path with
| Some response -> response
| None -> return (Response.create `Not_found, Body.Writer.string "Route not found")
;;
let () = Command_unix.run (Server.run_command ~summary:"Hello world HTTP Server" service)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>