Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/truemedian/hzzp
https://github.com/truemedian/hzzp
http zig
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/truemedian/hzzp
- Owner: truemedian
- License: mit
- Created: 2020-06-14T17:12:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T14:46:01.000Z (about 2 months ago)
- Last Synced: 2024-10-15T20:05:56.705Z (24 days ago)
- Topics: http, zig
- Language: Zig
- Homepage:
- Size: 13.7 MB
- Stars: 83
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - hzzp🗒️A I/O agnostic HTTP/1.1 parser and encoder for Zig
README
# hzzp
[![Linux Workflow Status](https://img.shields.io/github/actions/workflow/status/truemedian/hzzp/linux.yml?branch=master&label=Linux&style=for-the-badge)](https://github.com/truemedian/hzzp/actions/workflows/linux.yml)
[![Windows Workflow Status](https://img.shields.io/github/actions/workflow/status/truemedian/hzzp/windows.yml?branch=master&label=Windows&style=for-the-badge)](https://github.com/truemedian/hzzp/actions/workflows/windows.yml)
[![MacOS Workflow Status](https://img.shields.io/github/actions/workflow/status/truemedian/hzzp/macos.yml?branch=master&label=MacOS&style=for-the-badge)](https://github.com/truemedian/hzzp/actions/workflows/macos.yml)A I/O agnostic HTTP/1.1 parser and encoder for Zig.
## Features
* Performs no allocations during parsing or encoding, uses a single buffer for all parsing.
* Relatively simple to use.
* Works with any Reader and Writer.## Notes
* hzzp does **not** buffer either reads or writes, if you prefer the performance boost such buffering provides, you must
provide your own buffered Reader and Writers.## Examples
**Coming Soon...**