Registry / web-framework / fasthttp-router

fasthttp-router

JSON →
library1.5.4gogounverified

A trie-based high performance HTTP request router for the FastHTTP server.

go get github.com/fasthttp/router
INSTALL
IMPORT
SIG · FASTHTTP-ROUTER
F
fasthttp-router
web-frameworkgov1.5.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

router
github.com/fasthttp/router

Create a router and start a FastHTTP server.

package main import ( "fmt" "github.com/fasthttp/router" "github.com/valyala/fasthttp" ) func main() { r := router.New() r.GET("/", func(ctx *fasthttp.RequestCtx) { fmt.Fprintf(ctx, "Hello, World!") }) fasthttp.ListenAndServe(":8080", r.Handler) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.5.4latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
fasthttp-router — go get fasthttp-router · libregistry