Git Issue — cross-repo GitHub issue search. Browse, filter, and sort issues across all of GitHub with label tracking, language filters, and customizable views — entirely client-side.
Prerequisites: Node.js
- Install dependencies:
npm install - Run the app:
npm run dev
This app uses the GitHub Search API, which has stricter limits than the core REST API:
| Without token | With token | |
|---|---|---|
| Requests per minute | 10 | 30 |
| Reset | Every minute | Every minute |
The counter resets every minute (not hourly). You can check your current status at https://api.github.com/rate_limit.
- Go to GitHub Settings → Developer settings → Personal access tokens → Fine-grained tokens (or click here)
- Click Generate new token
- Give it a name (e.g.,
git-issue) - Set Repository access to
Public Repositories (read-only)— no scopes are needed for public repo issue queries - Click Generate token and copy the token value
- Add it to
.env.local:GITHUB_TOKEN="ghp_xxxxxxxxxxxxxxxxxxxx"
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details. Any distributed modifications must remain open-source under the same terms.