github.com/go-chi/chi/v5
go
pkg:golang/github.com/go-chi/chi/v5
1,530 Dependabot PRs
1 day ago
1,135 repositories
19 repositories
Recent PRs
Bump the go_modules group across 1 directory with 8 updates
chore(deps): bump the all group across 1 directory with 28 updates
build(deps): bump github.com/go-chi/chi/v5 from 5.0.11 to 5.2.2 in /workers/tenant-worker
SenseICT/painlessdns-assist #1
chore(deps): bump the all group across 1 directory with 26 updates
chore(deps): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.2.2 in /backend-go in the go_modules group across 1 directory
sartu01/dhkalign #57
chore(deps): bump the all group across 1 directory with 24 updates
Bump the golang group across 1 directory with 21 updates
Bump the go_modules group across 1 directory with 2 updates
maniack/moex #7
build(deps): bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.2
dedicio/sisgares-registers-service #13
chore(deps): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.2.3
Bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.2 in the go_modules group across 1 directory
chore(deps): bump the all group across 14 directories with 8 updates
go-fuego/fuego #594
Bump the go-dependencies group across 1 directory with 62 updates
Bump github.com/go-chi/chi/v5 from 5.0.8 to 5.2.2 in /v2
build(deps): Bump the go-dependency-updates group across 1 directory with 5 updates
Bump the go-dependencies group across 1 directory with 61 updates
radius-project/radius #10603
Bump github.com/go-chi/chi/v5 from 5.0.12 to 5.2.2 in /backend
Bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.2
build(deps): bump the go group across 1 directory with 13 updates
pomerium/datasource #419
build(deps): bump the golang group across 1 directory with 8 updates
Bump the production-dependencies group with 3 updates
spq/pkappa2 #312
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
Bump the go-modules-updates group across 1 directory with 12 updates
umputun/remark42 #1955
Bump the adapter group with 2 updates
systemli/alertmanager-webhook-signal #12
Bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.2 in /services/go-capabilities
Bump the go-dependencies group across 1 directory with 58 updates
radius-project/radius #10559
chore(deps): bump the go-deps group across 1 directory with 27 updates
Bump github.com/go-chi/chi/v5 from 5.0.7 to 5.2.3
robertscherbarth/go-service-skeleton #83
Bump the go-dependencies group across 1 directory with 58 updates
Bump the go group across 7 directories with 9 updates
curioswitch/tasuke #211
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
kubeflow/model-registry #1671
chore: bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.3
Txim0520/https-github.com-coder-coder #699
Bump the go-dependencies group across 1 directory with 57 updates
radius-project/radius #10539
Bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.2
hilaryRope/go-openapi-starter #1
Bump the go-dependencies group across 1 directory with 56 updates
radius-project/radius #10523
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
opencloud-eu/reva #358
Bump github.com/go-chi/chi/v5 from 5.2.0 to 5.2.2 in /_examples/real-world-examples/server-sent-events/server
gengle/watermill #14
Bump the go-dependencies group across 1 directory with 53 updates
Bump the non_major group across 1 directory with 5 updates
[Build-deps]: Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
owncloud/reva #400
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /assets/credhub-service-broker
cloudfoundry/cf-acceptance-tests #1689
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /assets/catnip
cloudfoundry/cf-acceptance-tests #1686
chore: bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.3
onchainengineering/hmi-computer #308
chore: bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.3
officialmofabs/coder #424
chore(deps): bump github.com/go-chi/chi/v5 from 5.0.11 to 5.2.2 in /examples/http/chi
samber/do #135
Package Details
| Name: | github.com/go-chi/chi/v5 |
| Ecosystem: | go |
| PURL Type: | golang |
| Package URL: | pkg:golang/github.com/go-chi/chi/v5 |
| JSON API: | View JSON |
Security Advisories
Package Information
Package chi is a small, idiomatic and composable router for building HTTP services. chi requires Go 1.14 or newer. Example: See github.com/go-chi/chi/_examples/ for more in-depth examples. URL patterns allow for easy matching of path components in HTTP requests. The matching components can then be accessed using chi.URLParam(). All patterns must begin with a slash. A simple named placeholder {name} matches any sequence of characters up to the next / or the end of the URL. Trailing slashes on paths must be handled explicitly. A placeholder with a name followed by a colon allows a regular expression match, for example {number:\\d+}. The regular expression syntax is Go's normal regexp RE2 syntax, except that regular expressions including { or } are not supported, and / will never be matched. An anonymous regexp pattern is allowed, using an empty string before the colon in the placeholder, such as {:\\d+} The special placeholder of asterisk matches the rest of the requested URL. Any trailing characters in the pattern are ignored. This is the only placeholder which will match / characters. Examples:
| Repository: | https://github.com/go-chi/chi |
| Homepage: | https://github.com/go-chi/chi |
| Latest Release: |
v5.2.1
10 months ago |
| Dependent Repos: | 8,374 |
| Dependent Packages: | 6,010 |
| Ranking: | Top 0.0855% by dependent repos Top 0.0612% by dependent pkgs |