An HTTP/1.1 server for zig
0

Configure Feed

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

add note on Zig 0.16 support

+5
+5
readme.md
··· 1 1 # An HTTP/1.1 server for Zig. 2 2 3 + ## Zig 0.16 4 + Support of Zig 0.16 is close. See the [zig-0.16 branch](https://github.com/karlseguin/http.zig/tree/zig-0.16). Current state is: working without websockets. Note that Zig 0.16's Io.Evented does not support networking, so, at least initially, httpz will continue to work like it always has (its own eventted I/O + a thread-pool). 5 + 6 + ## Example 7 + 3 8 ```zig 4 9 const std = @import("std"); 5 10 const httpz = @import("httpz");