Registry / web-framework / go-chi-chi-v5

go-chi-chi-v5

JSON →
library5.3.0gogounverified

Package chi is a small, idiomatic and composable router for building HTTP services.

go get github.com/go-chi/chi/v5
INSTALL
IMPORT
SIG · GO-CHI-CHI-V5
G
go-chi-chi-v5
web-frameworkgov5.3.0
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.

chi
github.com/go-chi/chi/v5

Create a simple HTTP server with Chi router

package main import ( "net/http" "github.com/go-chi/chi/v5" ) func main() { r := chi.NewRouter() r.Get("/hello", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello World")) }) http.ListenAndServe(":8080", r) }
Debug
Known issues

No known issues recorded.

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

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
go-chi-chi-v5 — go get go-chi-chi-v5 · libregistry