Popularity
3.6
Growing
Activity
5.5
Growing
66
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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of ngamux or a related project?
Popular Comparisons
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.