Martini is defunct, but Gin took their torch and ran with it. I use such
http routing frameworks as part of my day job, and would recommend the
three following ones.
1) Echo (https://github.com/labstack/echo)
2) Gin (https://github.com/gin-gonic/gin)
3) Chi (https://github.com/go-chi/chi)
I would
>
> Note that Martini is not maintained anymore
>
I hope this is not too off topic, but when choosing a third party go
package it is really important to consider whether the package is being
maintained. In my experience it is worth steering clear of any complex
package that is not being activ
On Sat, Mar 14, 2020 at 6:39 PM 'Benjamin' via golang-nuts
wrote:
>
> I don’t need to read the stackoverflow. And I don’t know martini.
> Middlewares and Handler are all can break the pipeline of http request.
> If martini is not designed like this, it is not well designed. Maybe the
> authors of
Note that Martini is not maintained anymore and the original author had
a fair bit to say about the merits or otherwise of the packages (via
the wayback machine since codegangsta.io is no longer live):
https://web.archive.org/web/20160518054801/https://codegangsta.io/blog/2014/05/19/my-thoughts-o
I don’t need to read the stackoverflow. And I don’t know martini.
Middlewares and Handler are all can break the pipeline of http request.
If martini is not designed like this, it is not well designed. Maybe the
authors of martini do not have real production software expriences.
Big companies like
I am looking for answer to this SO overflow question:
https://stackoverflow.com/questions/60679922/how-to-break-out-of-martini-middleware
In essence, I am wondering how to send the response, and *not* invoke any
of the subsequent middleware that is declared as part of the chain for that
matchin