Popularity
3.6
Growing
Activity
8.3
-
71
2
16
Programming language: Go
License: Mozilla Public License 2.0
Tags:
Web Frameworks
Routers
ngamux alternatives and similar packages
Based on the "Routers" category.
Alternatively, view ngamux alternatives based on common mentions on social networks and blogs.
-
xujiajun/gorouter
xujiajun/gorouter is a simple and fast HTTP router for Go. It is easy to build RESTful APIs and your web framework. -
Gleece
Building, documenting, validating, securing and customizing REST APIs through code-first development
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of ngamux or a related project?
README
ngamux
Simple HTTP router for Go
Installation
Run this command with correctly configured Go toolchain.
go get github.com/ngamux/ngamux
Examples
package main
import(
"net/http"
"github.com/ngamux/ngamux"
)
func main() {
mux := ngamux.New()
mux.Get("/", func(rw http.ResponseWriter, r *http.Request) error {
return ngamux.JSON(rw, ngamux.Map{
"message": "welcome!",
})
})
http.ListenAndServe(":8080", mux)
}
See more examples!
Provided Middlewares
License
This project is licensed under the Mozilla Public License 2.0.
Contributors
Thanks to all contributors!
*Note that all licence references and agreements mentioned in the ngamux README section above
are relevant to that project's source code only.