[ 源代码: golang-github-justinas-alice ]
软件包:golang-github-justinas-alice-dev(0.0~git20171023.03f45bd-1)
golang-github-justinas-alice-dev 的相关链接
Debian 的资源:
下载源码包 golang-github-justinas-alice:
- [golang-github-justinas-alice_0.0~git20171023.03f45bd-1.dsc]
- [golang-github-justinas-alice_0.0~git20171023.03f45bd.orig.tar.gz]
- [golang-github-justinas-alice_0.0~git20171023.03f45bd-1.debian.tar.xz]
维护小组:
外部的资源:
- 主页 [github.com]
相似软件包:
- golang-github-goji-httpauth-dev
- golang-github-grpc-ecosystem-go-grpc-middleware-dev
- golang-github-urfave-negroni-dev
- ruby-rack
- golang-github-hashicorp-errwrap-dev
- golang-github-hashicorp-go-cleanhttp-dev
- golang-github-go-chi-chi-dev
- golang-github-unrolled-secure-dev
- ejabberd-mod-rest
- python3-static3
- libhttp-response-encoding-perl
Painless middleware chaining for Go
Alice provides a convenient way to chain HTTP middleware functions and the app handler.
It transforms:
go Middleware1(Middleware2(Middleware3(App)))to
go alice.New(Middleware1, Middleware2, Middleware3).Then(App)
None of the other middleware chaining solutions behaves exactly like Alice. Alice is as minimal as it gets: in essence, it's just a for loop that does the wrapping for you.