github.com/go-chi/chi/v5
go
pkg:golang/github.com/go-chi/chi/v5
1,782 Dependabot PRs
3 days ago
1,272 repositories
36 repositories
Recent PRs
build(deps): bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 in /backend
deps(go): bump the go-minor-patch group across 1 directory with 7 updates
build(deps): bump the gomod group across 1 directory with 29 updates
saschagrunert/cri-o #986
chore(deps): bump the go-deps group across 1 directory with 17 updates
stefanriegel/UDDI-Token-Calculator #86
chore(go-backend): Bump the gomod group in /go-backend with 5 updates
deps(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.3.0
build(deps): bump the go-deps group across 1 directory with 7 updates
chore(deps): bump the go_modules group across 5 directories with 28 updates
GlacierEQ/sourcegraph-public-snapshot #38
build(go): ⬆️ bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0
deps: bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0
chore(deps): bump the minor-and-patch group across 1 directory with 3 updates
konsulin-care/konsulin-api #331
deps: Bump the all-go-deps group with 10 updates
jordigilh/kubernaut #1291
chore(deps): bump the non-breaking group with 2 updates
Kiefer-Networks/sshvault-api #12
deps: bump the minor-and-patch group across 1 directory with 5 updates
dcm-project/catalog-manager #86
fix: Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0
icco/hello #40
chore(deps): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.3.0 in /tools/mock-abs in the production-deps group
cryptoma4o/AIbank #148
deps(gateway): bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 in /services/gateway
deps(go): bump the go-minor-patch group with 7 updates
ruaan-deysel/vault #106
build(deps): bump the gomod group across 1 directory with 20 updates
cri-o/cri-o #9975
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.3 to 5.3.0 in /apps/api
deps(deps): Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0
build(deps): Bump the go-dependency-updates group across 1 directory with 3 updates
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0
TooAndy/navidrome #192
build(deps): bump the go-dependencies group across 1 directory with 2 updates
cccteam/access #173
chore(backend)(deps): Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 in /backend
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 in /server
chore(deps): bump the production group with 2 updates
Bump the go_modules group across 1 directory with 2 updates
deps(go): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.3.0
chore(deps): bump github.com/go-chi/chi/v5 from 5.1.0 to 5.3.0 in /packages/otter-go in the chi group
192d-Wing/usg-dcim #133
Bump github.com/go-chi/chi/v5 from 5.2.5 to 5.3.0 in /backend
hackclub/format #31
chore(deps): bump the go-deps group across 1 directory with 47 updates
michael-angelo-guban/go-ruder-server #80
build(deps): bump the go_modules group across 3 directories with 3 updates
cd5kbyff96-design/SaturnCloak #5
deps(go): bump github.com/go-chi/chi/v5 from 5.2.3 to 5.2.5
deps: bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.5 in /bff
deps: bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.5 in /todo-service
build(deps): bump github.com/go-chi/chi/v5 from 5.0.10 to 5.2.5
zypher-game/zytron-optimism #869
chore(deps): bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.5 in /backend
chore(deps): bump the go_modules group across 5 directories with 30 updates
GlacierEQ/sourcegraph-public-snapshot #28
chore(deps): bump the go_modules group across 4 directories with 3 updates
langwatch/langwatch #3761
chore(deps): bump github.com/go-chi/chi/v5 from 5.1.0 to 5.2.5 in /backend
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.5 in /server
Bump the docker group across 1 directory with 3 updates
mihailtudos/payment_gateway #3
chore(deps): bump the go_modules group across 2 directories with 1 update
agentbreeder/agentbreeder #337
chore(deps)(deps): Bump the gateway-minor-patch group in /gateway with 5 updates
chore(deps): bump github.com/go-chi/chi/v5 from 5.0.12 to 5.2.5 in /backend
chore(deps): bump the go_modules group across 4 directories with 4 updates
langwatch/langwatch #3642
Bump github.com/go-chi/chi/v5 from 5.2.3 to 5.2.5
c64bob/caldo #15
Bump the minor-and-patch group in /backend with 6 updates
build(deps): bump the go_modules group across 1 directory with 2 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
over 1 year ago |
| Dependent Repos: | 8,374 |
| Dependent Packages: | 6,010 |
| Ranking: | Top 0.0855% by dependent repos Top 0.0612% by dependent pkgs |