github.com/go-chi/chi/v5
go
pkg:golang/github.com/go-chi/chi/v5
1,530 Dependabot PRs
2 days ago
1,135 repositories
19 repositories
Recent PRs (filtered by: Patch PRs )
chore(deps): bump the all group across 1 directory with 28 updates
chore(deps): bump the all group across 1 directory with 26 updates
chore(deps): bump the all group across 1 directory with 24 updates
Bump the golang group across 1 directory with 21 updates
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
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
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 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 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
Bump the go-dependencies group across 1 directory with 57 updates
radius-project/radius #10539
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
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 in /tracing
goadesign/examples #178
chore(deps): bump the all group across 1 directory with 25 updates
chore(deps): bump the go-deps group across 1 directory with 28 updates
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 in /onix
GoogleCloudPlatform/dpi-accelerator #2
chore(deps): bump the go-deps group across 1 directory with 35 updates
michael-angelo-guban/go-ruder-server #49
Bump github.com/go-chi/chi/v5 from 5.2.0 to 5.2.2
dhax/go-base #26
Bump the go-dependencies group across 1 directory with 52 updates
radius-project/radius #10445
chore: bump the go-deps group across 1 directory with 35 updates
rudderlabs/rudder-server #6364
build(deps): bump the gomod group with 37 updates
SM-100-Bench/cri-o_cri-o_8968 #26
build(deps): Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
githedgehog/fabric #1093
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
agurinov/gopl #203
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2
Bump the backend group across 1 directory with 16 updates
fr34k8/hub #370
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /server
speakeasy-api/gram #244
upgrade: Bump the go-dependencies group across 1 directory with 8 updates
cccteam/session #116
Bump the backend group across 1 directory with 16 updates
artifacthub/hub #4526
Bump the golang group across 1 directory with 20 updates
Bump the go-dependencies group across 1 directory with 49 updates
radius-project/radius #10413
build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2
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 |