github.com/go-chi/chi/v5
go
pkg:golang/github.com/go-chi/chi/v5
1,532 Dependabot PRs
6 days ago
1,136 repositories
4 repositories
Recent PRs (filtered by: Patch PRs )
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
goadesign/goa #3792
:arrow_up: Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
link-society/flowg #903
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
icco/postmortems #69
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
RedHatInsights/edge-api #2934
Bump the golang group across 1 directory with 13 updates
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
absmach/magistrala #288
chore: bump the go-deps group across 1 directory with 28 updates
rudderlabs/rudder-server #6289
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
deps(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /app
information-sharing-networks/signalsd #82
Bump the go-dependencies group across 1 directory with 37 updates
radius-project/radius #10299
[dependabot] bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
pmatteo/chi-healthcheck-middleware #9
chore(deps): Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /apps/api
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
icco/recommender #42
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
dulli/deichwave #123
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
absmach/supermq #3104
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
bufbuild/buf #3989
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
ashirt-ops/ashirt-server #1304
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
baely/officetracker #126
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
okulik/gwook #96
upgrade(deps): Bump the go-dependencies group in /resource with 2 updates
cccteam/ccc #439
Bump the backend group across 1 directory with 13 updates
artifacthub/hub #4509
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
MarioCarrion/todo-api-microservice-example #690
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in the golang-dependencies group
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 in /server
developStorm/office-hours-queue #93
chore(go): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
vgarvardt/rklotz #222
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
ShelterTechSF/sheltertech-go #215
Bump the non_major group across 1 directory with 8 updates
jademcosta/jiboia #189
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
JunNishimura/clean-architecture-with-go #61
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
icco/reportd #104
chore(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
samber/slog-chi #34
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3 in /sample
Bump github.com/go-chi/chi/v5 from 5.2.0 to 5.2.3
umputun/rlb #33
Bump the minor-patch-updates group across 1 directory with 8 updates
YourSurpriseCom/go-datadog-apm #38
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
RootShell-coder/certificates #2
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
n0rdy/forq #5
Bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
n0rdy/forq #4
Bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.3
n0rdy/remindme #58
build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3
rasorp/attila #27
Bump the minor-and-patch group across 1 directory with 8 updates
stellar/stellar-disbursement-platform-backend #843
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 |