Popularity
3.6
Growing
Activity
0.0
-
58
2
17
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. -
router
A lightweight yet powerful HTTP router for the Go programming language
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
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.