mux icon indicating copy to clipboard operation
mux copied to clipboard

mux is a lightweight HTTP request router

Results 2 mux issues
Sort by recently updated
recently updated
newest added

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) *...