Web And A P I Frameworks
net/http (stdlib is often enough), gin/echo/fiber, gRPC-Go.
Why we need this / what value this brings
Go's stdlib HTTP server is production-capable on its own — knowing when a framework actually earns its weight matters.
When to use this
Building an internal API or service — default to net/http + a router like chi before reaching for a full framework.
How to use or implement this
gRPC-Go for internal service-to-service calls where a strict contract matters.
Research questions
- (add as research surfaces open questions)
Empty folder — drop notes, links, and findings here as you research.