Add goroute router (#2685)

* Update README.md

* Add goroute

* Order in abc

* Move goroute to routes section
This commit is contained in:
Andžej Maciusovič 2019-09-20 01:17:50 +03:00 committed by Kirill Danshin
parent c75c622a01
commit 16b664ff85

View File

@ -1882,7 +1882,6 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis
* [REST Layer](http://rest-layer.io) - Framework to build REST/GraphQL API on top of databases with mostly configuration over code. * [REST Layer](http://rest-layer.io) - Framework to build REST/GraphQL API on top of databases with mostly configuration over code.
* [Revel](https://github.com/revel/revel) - High-productivity web framework for the Go language. * [Revel](https://github.com/revel/revel) - High-productivity web framework for the Go language.
* [rex](https://github.com/goanywhere/rex) - Rex is a library for modular development built upon gorilla/mux, fully compatible with `net/http`. * [rex](https://github.com/goanywhere/rex) - Rex is a library for modular development built upon gorilla/mux, fully compatible with `net/http`.
* [route](https://github.com/goroute/route) - Simple yet powerful HTTP request multiplexer.
* [rux](https://github.com/gookit/rux) - Simple and fast web framework for build golang HTTP applications. * [rux](https://github.com/gookit/rux) - Simple and fast web framework for build golang HTTP applications.
* [tango](https://github.com/lunny/tango) - Micro & pluggable web framework for Go. * [tango](https://github.com/lunny/tango) - Micro & pluggable web framework for Go.
* [tigertonic](https://github.com/rcrowley/go-tigertonic) - Go framework for building JSON web services inspired by Dropwizard. * [tigertonic](https://github.com/rcrowley/go-tigertonic) - Go framework for building JSON web services inspired by Dropwizard.
@ -1932,6 +1931,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis
* [FastRouter](https://github.com/razonyang/fastrouter) - a fast, flexible HTTP router written in Go. * [FastRouter](https://github.com/razonyang/fastrouter) - a fast, flexible HTTP router written in Go.
* [gocraft/web](https://github.com/gocraft/web) - Mux and middleware package in Go. * [gocraft/web](https://github.com/gocraft/web) - Mux and middleware package in Go.
* [Goji](https://github.com/goji/goji) - Goji is a minimalistic and flexible HTTP request multiplexer with support for `net/context`. * [Goji](https://github.com/goji/goji) - Goji is a minimalistic and flexible HTTP request multiplexer with support for `net/context`.
* [goroute](https://github.com/goroute/route) - Simple yet powerful HTTP request multiplexer.
* [GoRouter](https://github.com/vardius/gorouter) - GoRouter is a Server/API micro framwework, HTTP request router, multiplexer, mux that provides request router with middleware supporting `net/context`. * [GoRouter](https://github.com/vardius/gorouter) - GoRouter is a Server/API micro framwework, HTTP request router, multiplexer, mux that provides request router with middleware supporting `net/context`.
* [gowww/router](https://github.com/gowww/router) - Lightning fast HTTP router fully compatible with the net/http.Handler interface. * [gowww/router](https://github.com/gowww/router) - Lightning fast HTTP router fully compatible with the net/http.Handler interface.
* [httprouter](https://github.com/julienschmidt/httprouter) - High performance router. Use this and the standard http handlers to form a very high performance web framework. * [httprouter](https://github.com/julienschmidt/httprouter) - High performance router. Use this and the standard http handlers to form a very high performance web framework.