Go web frameworks
# How Go's stdlib-first web culture shapes the field — net/http, thin routers like chi, full frameworks Gin and Echo, and the fasthttp outlier Fiber.
❯ cat documents/
-
Go web frameworks — the landscape
Concept
2026-08-09
How Go's stdlib-first web culture shapes the field — net/http, thin routers like chi, full frameworks Gin and Echo, and the fasthttp outlier Fiber.
-
Echo deep dive
Concept
2026-08-09
Echo's Context interface, centralized HTTPErrorHandler, binding and validation hooks, middleware set with stdlib adapters, and how it compares to Gin.
-
Fiber deep dive
Concept
2026-08-09
Fiber's Express-style API on fasthttp — what abandoning net/http buys, the recycled-context hazard, and when the throughput trade is worth it.
-
Gin deep dive
Concept
2026-08-09
Gin's Context model, radix-tree routing, binding and validation, middleware ecosystem, and when it earns its keep over chi plus stdlib.
-
net/http deep dive
Concept
2026-08-09
The stdlib HTTP stack in depth — Handler contract, 1.22 ServeMux patterns, middleware, server timeouts, client pooling, HTTP/2, and graceful shutdown.
-
Frameworks × the stdlib contracts — who honors what
Concept
2026-08-09
Contract-by-contract table of how chi, Gin, Echo, and Fiber honor, wrap, or replace Go's stdlib interfaces, and why compatibility pays.