Skip to content

Commit 6c810fb

Browse files
committed
readme
1 parent 3848b25 commit 6c810fb

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
Minimal HTTP server using good old threads, with stream abstractions,
55
simple routing, URL encoding/decoding, and optional compression with camlzip.
6+
It also supports [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events)
7+
([w3c](https://html.spec.whatwg.org/multipage/server-sent-events.html#event-stream-interpretation))
68

7-
Free from all forms of `ppx`, async monads, etc.
9+
Free from all forms of `ppx`, async monads, etc. 🙃
810

911
**Note**: it can be useful to add the `jemalloc` opam package for long running
1012
server, as it does a good job at controlling memory usage.
@@ -75,11 +77,11 @@ dependencies or high scalability libraries.
7577

7678
Use cases might include:
7779

78-
- serve content directly from a static blog generator
79-
- provide a web UI to some tool (like CUPS and syncthing do)
80-
- implement a basic monitoring page for a service
81-
- provide a simple json API for a service, on top of http
82-
- use `http_of_dir` to serve odoc-generated docs or some assets directory
80+
- serve content directly from a static blog generator;
81+
- provide a web UI to some tool (like CUPS and syncthing do);
82+
- implement a basic monitoring page for a service;
83+
- provide a simple json API for a service, on top of http;
84+
- use `http_of_dir` to serve odoc-generated docs or some assets directory.
8385

8486
## Documentation
8587

0 commit comments

Comments
 (0)