Gin Gonic Web Framework

Gin Gonic Web Framework

What is Gin?

Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance – up to 40 times faster. If you need smashing performance, get yourself some Gin.

Fast

Radix tree based routing, small memory foot print. No reflection. Predictable API performance.

Middleware support

A incoming HTTP request can be handled by a chain of middlewares and the final action. For example: Logger, Authorization, GZIP and finally post a message in the DB.

Crash-free

Gin can catch a panic occurred during a HTTP request and recover it. This way, your server will be always available. It’s also possible to report this panic to Sentry for example!

Read more…

Buy me a coffee

comments powered by Disqus