No post body was provided.
Ask HN: What Go framework for web API are you using in production?
1–10 of 65 posts
Re: Ask HN: What Go framework for web API are you using in production?
#2Using no frameworks at all, only https://github.com/julienschmidt/httprouter for routing.
Re: Ask HN: What Go framework for web API are you using in production?
#3Using no frameworks at all, only https://github.com/julienschmidt/httprouter for routing.
And https://github.com/gorilla/sessions for sessions.
Re: Ask HN: What Go framework for web API are you using in production?
#4Re: Ask HN: What Go framework for web API are you using in production?
#5Re: Ask HN: What Go framework for web API are you using in production?
#6Re: Ask HN: What Go framework for web API are you using in production?
#7Re: Ask HN: What Go framework for web API are you using in production?
#8We run grpc-web with a big single-page VueJS app on the frontend. That way, Go is just the Api server, and the frontend handles all the routing and stuff.
Re: Ask HN: What Go framework for web API are you using in production?
#9Re: Ask HN: What Go framework for web API are you using in production?
#10https://github.com/gorilla/mux
Same here.
I love this about Go. A router and you are off and running.
It is so simple to wrap handlers with your own middleware for auth, pre-flighting etc.