An HTTP Server in Go From scratch: Part 2
Follow along while I improve the HTTPServer I wrote from scratch in Go. Last year I wrote a blog post explaining how I built my HTTP Server in Golang by following a Coder Crafters, I got some good feedback on it and improved the HTTP Server quite a bit, let’s dive into the changes!
The git repository is still available if you want to look at the whole codebase.
The first unit test
Let’s start by adding a unit test, I was relying on the Codecrafters test suite but now I want to have some of my o...
Read more at krayorn.com