Zig Bits 0x4: Building an HTTP client/server from scratch
15 minute read Published: 2023-07-11Let's experiment with the std.http
module of Zig >=0.11
and create an HTTP server/client from scratch (along with some benchmarks)!
Let's experiment with the std.http
module of Zig >=0.11
and create an HTTP server/client from scratch (along with some benchmarks)!
In this post, I'm sharing tips & tricks about managing/maintaining an open-source Zig project and mentioning the commonly used practices. I'm also giving a brief introduction to my first-ever Zig project "linuxwave" which led to the writing of this series.
Let's talk about how to detect memory leaks in Zig and avoid them by using the defer
statement.
I decided to start a new blog series called "Zig Bits" where I share interesting bits of information about the Zig programming language. This series will be especially for beginners because I'm also a beginner.