https://github.com/go-chi/cors
Score: 28.871754221976435
Last synced: about 16 hours ago
JSON representation
Repository metadata:
CORS net/http middleware for Go
- Host: GitHub
- URL: https://github.com/go-chi/cors
- Owner: go-chi
- License: mit
- Created: 2016-04-27T18:53:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-07-01T14:07:12.000Z (about 1 year ago)
- Last Synced: 2026-08-05T22:42:53.343Z (8 days ago)
- Language: Go
- Homepage:
- Size: 37.1 KB
- Stars: 423
- Watchers: 5
- Forks: 40
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Owner metadata:
- Name: go-chi
- Login: go-chi
- Email:
- Kind: organization
- Description:
- Website:
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/29575368?v=4
- Repositories: 17
- Last Synced at: 2023-02-26T15:55:10.593Z
- Profile URL: https://github.com/go-chi
GitHub Events
Total
- Create event: 1
- Fork event: 3
- Issue comment event: 14
- Issues event: 3
- Member event: 1
- Pull request event: 3
- Pull request review comment event: 1
- Pull request review event: 1
- Push event: 1
- Watch event: 70
- Total: 98
Last Year
- Issue comment event: 2
- Watch event: 14
- Total: 16
Committers metadata
Last synced: 1 day ago
Total Commits: 26
Total Committers: 12
Avg Commits per committer: 2.167
Development Distribution Score (DDS): 0.692
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Peter Kieltyka | p****a@p****m | 8 |
| Peter Kieltyka | p****a@g****m | 6 |
| Vojtech Vitek (golang.cz) | v****k@g****z | 2 |
| Ted Marozzi | 3****i | 2 |
| lordidiot | 0****t@g****m | 1 |
| Yutaka | y****i@c****u | 1 |
| Nick Randall | n****l@g****m | 1 |
| Matthew Harvey | s****e@m****t | 1 |
| Maciej Lisiewski | m****i@g****m | 1 |
| John Barton | j****n@g****m | 1 |
| Henry Gressmann | m****l@e****m | 1 |
| HAYASHI KENTA | 8****z | 1 |
Issue and Pull Request metadata
Last synced: 8 days ago
Total issues: 15
Total pull requests: 32
Average time to close issues: 12 months
Average time to close pull requests: 2 months
Total issue authors: 11
Total pull request authors: 22
Average comments per issue: 3.07
Average comments per pull request: 1.13
Merged pull request: 14
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 5
Past year average time to close issues: N/A
Past year average time to close pull requests: 29 days
Past year issue authors: 0
Past year pull request authors: 3
Past year average comments per issue: 0
Past year average comments per pull request: 0.6
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- jub0bs (4)
- ablankz (2)
- VojtechVitek (1)
- jqdurham (1)
- ahamansh (1)
- jeevankk (1)
- ocalvet (1)
- explodingcamera (1)
- grtfou (1)
- cameronbraid (1)
- ChronosMasterOfAllTime (1)
Top Pull Request Authors
- ChronosMasterOfAllTime (4)
- ablankz (3)
- VojtechVitek (2)
- ted-marozzi (2)
- lihan3238 (2)
- c2h5oh (2)
- sonnemusk (2)
- nicksrandall (1)
- albulescu (1)
- gonzaloserrano (1)
- explodingcamera (1)
- anukul (1)
- Krishnanand-G (1)
- ejcx (1)
- Uyutaka (1)
Top Issue Labels
Top Pull Request Labels
Package metadata
- Total packages: 13
- Total downloads: unknown
- Total docker downloads: 657,938,339
- Total dependent packages: 1,840 (may contain duplicates)
- Total dependent repositories: 1,782 (may contain duplicates)
- Total versions: 34
proxy.golang.org: github.com/go-chi/cors
cors package is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/
- Homepage: https://github.com/go-chi/cors
- Documentation: https://pkg.go.dev/github.com/go-chi/cors#section-documentation
- Licenses: MIT
- Latest release: v1.2.2 (published about 1 year ago)
- Last Synced: 2026-08-11T23:32:01.094Z (1 day ago)
- Versions: 7
- Dependent Packages: 1,840
- Dependent Repositories: 1,782
- Docker Downloads: 657,938,339
-
Rankings:
- Dependent packages count: 0.105%
- Docker downloads count: 0.153%
- Dependent repos count: 0.193%
- Average: 1.683%
- Stargazers count: 3.478%
- Forks count: 4.483%
proxy.golang.org: gopkg.in/go-chi/cors.v1
cors package is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/ You can configure it by passing an option struct to cors.New: c := cors.New(cors.Options{ AllowedOrigins: []string{"foo.com"}, AllowedMethods: []string{"GET", "POST", "DELETE"}, AllowCredentials: true, }) Then insert the handler in the chain: handler = c.Handler(handler) See Options documentation for more options.
- Homepage: https://github.com/go-chi/cors
- Documentation: https://pkg.go.dev/gopkg.in/go-chi/cors.v1#section-documentation
- Licenses: MIT
- Latest release: v1.1.1 (published over 6 years ago)
- Last Synced: 2026-08-11T23:31:37.678Z (1 day ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 2.209%
- Forks count: 2.803%
- Average: 5.339%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
proxy.golang.org: github.com/go-chi/CORS
cors package is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/ You can configure it by passing an option struct to cors.New: c := cors.New(cors.Options{ AllowedOrigins: []string{"foo.com"}, AllowedMethods: []string{"GET", "POST", "DELETE"}, AllowCredentials: true, }) Then insert the handler in the chain: handler = c.Handler(handler) See Options documentation for more options.
- Homepage: https://github.com/go-chi/CORS
- Documentation: https://pkg.go.dev/github.com/go-chi/CORS#section-documentation
- Licenses: MIT
- Latest release: v1.2.2 (published about 1 year ago)
- Last Synced: 2026-08-11T23:31:49.992Z (1 day ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 2.209%
- Forks count: 2.803%
- Average: 5.339%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
proxy.golang.org: github.com/go-Chi/cors
cors package is net/http handler to handle CORS related requests as defined by http://www.w3.org/TR/cors/
- Homepage: https://github.com/go-Chi/cors
- Documentation: https://pkg.go.dev/github.com/go-Chi/cors#section-documentation
- Licenses: MIT
- Latest release: v1.2.2 (published about 1 year ago)
- Last Synced: 2026-08-11T23:31:32.805Z (1 day ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 3.293%
- Forks count: 4.242%
- Average: 6.546%
- Dependent packages count: 8.491%
- Dependent repos count: 10.156%
guix: go-github-com-go-chi-cors
CORS @code{net/http} middleware for Go
- Homepage: https://github.com/go-chi/cors
- Documentation: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/golang-web.scm#n7613
- Licenses: bsd-3
- Latest release: 1.2.2 (published about 1 month ago)
- Last Synced: 2026-07-05T08:00:35.704Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-11: golang-github-go-chi-cors
- Homepage: https://github.com/go-chi/cors
- Documentation: https://packages.debian.org/bullseye/golang-github-go-chi-cors
- Licenses: mit
- Latest release: 1.1.1-2 (published 6 months ago)
- Last Synced: 2026-03-13T15:38:54.571Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-13: golang-github-go-chi-cors
- Homepage: https://github.com/go-chi/cors
- Documentation: https://packages.debian.org/trixie/golang-github-go-chi-cors
- Licenses: mit
- Latest release: 1.2.1-1 (published 6 months ago)
- Last Synced: 2026-03-13T20:10:19.547Z (5 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-12: golang-github-go-chi-cors
- Homepage: https://github.com/go-chi/cors
- Documentation: https://packages.debian.org/bookworm/golang-github-go-chi-cors
- Licenses: mit
- Latest release: 1.2.1-1 (published 6 months ago)
- Last Synced: 2026-08-09T18:10:01.251Z (4 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
Dependencies
- actions/checkout v2 composite
- actions/setup-go v2 composite