github.com/go-chi/chi/v5
go
pkg:golang/github.com/go-chi/chi/v5
1,531 Dependabot PRs
18 days ago
1,135 repositories
4 repositories
Recent PRs (filtered by: Patch PRs )
build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2
Chore(deps): Bump the minor-and-patch group across 1 directory with 14 updates
stellar/stellar-disbursement-platform-backend #866
build(deps): bump the gomod group with 37 updates
SM-100-Bench/cri-o_cri-o_8968 #25
build(deps): bump the gomod group with 37 updates
SM-100-Bench/cri-o_cri-o_8968 #24
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
eclipse-basyx/basyx-go-components #29
chore: bump the go-deps group across 1 directory with 34 updates
rudderlabs/rudder-server #6330
Bump the minor-and-patch group across 1 directory with 13 updates
stellar/stellar-disbursement-platform-backend #859
chore: bump the go-deps group across 1 directory with 35 updates
rudderlabs/rudder-server #6326
Bump the backend group across 1 directory with 16 updates
PhoenixRedflash/hub #471
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
mailgun/mailgun-go #429
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
maragudk/gomponents-starter-kit #30
chore(deps): bump the all group with 5 updates
nrwiersma/ren #276
chore(deps): bump the all group across 20 directories with 6 updates
go-fuego/fuego #584
build(deps): bump the gomod group with 37 updates
SM-100-Bench/cri-o_cri-o_8968 #23
chore(deps): bump the all group across 1 directory with 36 updates
Bump the go-dependencies group across 1 directory with 47 updates
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
buildkite/agent #3460
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
smallstep/certificates #2385
chore(deps): bump the all group across 1 directory with 35 updates
chore(deps): bump the go-dependencies group with 9 updates
sensoria-pro/payment-processing-system #14
chore(deps): bump the go-deps group across 1 directory with 12 updates
rudderlabs/keydb #49
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
maragudk/glue #69
chore(deps): Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
tansive/tansive #50
chore(deps): bump the go-deps group across 1 directory with 5 updates
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
canonical/lxd #16422
deps(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
sympact06/arrivo-transit-api #4
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
yairfalse/tapio #384
deps(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
[gomod] Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /api
skulpturenz/skulpture.xyz #551
chore: bump the go-deps group across 1 directory with 34 updates
rudderlabs/rudder-server #6323
Bump the go-lib-update group with 5 updates
tiagompalte/golang-clean-arch-template #35
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
build(deps): Bump the go-dependency-updates group with 3 updates
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
lukewhrit/spacebin #501
build(deps): bump the go-dependencies group across 1 directory with 7 updates
cccteam/access #95
upgrade: Bump the go-dependencies group across 1 directory with 7 updates
cccteam/session #112
Bump the go-dependency group across 1 directory with 8 updates
Bump the backend group across 1 directory with 15 updates
artifacthub/hub #4518
Bump the golang group across 1 directory with 17 updates
Bump the go-dependencies group across 1 directory with 43 updates
radius-project/radius #10351
chore(deps): bump the everything-else group across 1 directory with 6 updates
gnolang/tx-indexer #197
[Build-deps]: Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
cs3org/reva #5297
Bump the golang group across 1 directory with 14 updates
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 |