Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/truemedian/wz
https://github.com/truemedian/wz
websocket zig
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/truemedian/wz
- Owner: truemedian
- License: mit
- Created: 2020-07-04T23:03:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-03T01:37:47.000Z (about 2 years ago)
- Last Synced: 2024-08-02T22:27:32.638Z (3 months ago)
- Topics: websocket, zig
- Language: Zig
- Homepage:
- Size: 73.2 KB
- Stars: 36
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - wzποΈAn I/O agnostic WebSocket 1.3 library for Zig
README
# wz
[![Linux Workflow Status](https://img.shields.io/github/workflow/status/truemedian/wz/Linux?label=Linux&style=for-the-badge)](https://github.com/truemedian/wz/actions/workflows/linux.yml)
[![Windows Workflow Status](https://img.shields.io/github/workflow/status/truemedian/wz/Windows?label=Windows&style=for-the-badge)](https://github.com/truemedian/wz/actions/workflows/windows.yml)
[![MacOS Workflow Status](https://img.shields.io/github/workflow/status/truemedian/wz/MacOS?label=MacOS&style=for-the-badge)](https://github.com/truemedian/wz/actions/workflows/macos.yml)An I/O agnostic WebSocket 1.3 library for Zig.
Currently untested, contributions towards a test suite are appreciated.
## Features
* Performs no allocations, uses a single buffer for all parsing.
* Works with any Reader and Writer.## Notes
* wz 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...**