A basic HTTP server built in Zig (for learning purposes).
Currently implements the GET method and is enough to host basic static websites.
git clone git@github.com:peterc-s/zig-httporgit clone https://github.com/peterc-s/zig-http.cd zig-http- Use
zig build runto build and run.
- Allow changing port with command line argument.
- Check
GETimplementation is up to specification. - Implement other HTTP methods.
- Implement HTTP versions.
- Refactor code.