According to a recent thread on Reddit, many people like it simple when doing web development in Go and use net/http with useful addons (like the Gorilla toolkit) instead of a full-fledged framework. Such applications often make use of middleware, but wrapping lots of layers of handlers can become messy in the long run: final := gzipHandler(rateLimitHandler(securityHandler(authHandler(myApp)))) Su
{{#tags}}- {{label}}
{{/tags}}