Which web framework do you think is the best for Go? Have you used any of them? What are the advantages and disadvantages? Please share your experiences and facts. Thank you.
2 Likes
My favorite combinations are gin with gin-swagger and swagger-codegen for created clients. But in this regard, my needs are really straightforward.
1 Like
The best way to work is without a special framework. When I switched from Django to Go, I looked for a good framework but realized through trial and error that the built-in HTTP server in Go is all you need. The only tool I consistently use is go-swagger because it helps clearly define the API for both the backend and the frontend.