https://github.com/kripple/repos
A gallery page that dynamically displays all publicly accessible GitHub repositories belonging to a specific user (kripple).
https://github.com/kripple/repos
cloudflare-workers css github-api html nodejs react react-hooks rtk-query typescript
Last synced: about 1 month ago
JSON representation
A gallery page that dynamically displays all publicly accessible GitHub repositories belonging to a specific user (kripple).
- Host: GitHub
- URL: https://github.com/kripple/repos
- Owner: kripple
- License: mit
- Created: 2024-12-27T22:37:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-16T23:28:58.000Z (about 1 year ago)
- Last Synced: 2025-06-21T07:38:11.435Z (11 months ago)
- Topics: cloudflare-workers, css, github-api, html, nodejs, react, react-hooks, rtk-query, typescript
- Language: TypeScript
- Homepage: https://kripple.github.io/repos/
- Size: 3.95 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Repos
A gallery page that dynamically displays all publicly accessible GitHub repositories belonging to a specific user.
## Rate Limits
The GitHub API rate limit for public access (unauthenticated requests) is 60 requests per hour. For authenticated users, the rate limit is significantly higher at 5,000 requests per hour.
You can see your remaining requests and reset time in the response headers of each API call.
**Header name** | **Description**
x-ratelimit-limit | The maximum number of requests that you can make per hour
x-ratelimit-remaining | The number of requests remaining in the current rate limit window
x-ratelimit-used | The number of requests you have made in the current rate limit window
x-ratelimit-reset | The time at which the current rate limit window resets, in UTC epoch seconds
x-ratelimit-resource | The rate limit resource that the request counted against. For more information about the different resources, see REST API endpoints for rate limits.
For reference: https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api#checking-the-status-of-your-rate-limit