Registry / web-framework / go-chi-chi

go-chi-chi

JSON →
librarygogounverified

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

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

Minimal Chi router

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

No known issues recorded.

Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Dependencies

No dependency data recorded yet.

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