mux
mux copied to clipboard
mux is a lightweight HTTP request router
it will be cool to have group routing instead of us doing `r := mux.Classic() r.HandleFunc(http.MethodGet, "/admin/home", adminHomeHandler) r.HandleFunc(http.MethodGet, "/admin/profile", adminProfileHandler)` We can just have maybe `admin := mux.Group("admin")` then...
Can you run some benchmarks please comparing this to other golang routers / muxes in addition to the stdlib mux? A few very popular ones: * [chi](https://github.com/pressly/chi) * [httprouter](https://github.com/julienschmidt/httprouter) *...