Which HTTP framework do you use or recommend usage?

Hi there
I want to know which HTTP framework is better and Is Iris or gorilla better than Gin?

Thanks in advance

Gorilla, if you really need anything. Gorilla is not a framework, just a library that provides some nice functionality: routing, sessions, …

Start with “naked” net/http and only use gorilla if you need any specific functionality.

Steer clear from gin and similar, they are absolutely not idiomatic.

5 Likes

go chi

I have been using Gin for last one year and never faced any issue. It is quite fast although simple.

2 Likes

I like Gin

I like echo

1 Like

Gin as well since it has nice routing, middleware support and many convenient methods.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.