{"id":18823062,"url":"https://github.com/sivamani-18/awesome-github-repos","last_synced_at":"2026-04-16T02:32:24.941Z","repository":{"id":251203674,"uuid":"836681028","full_name":"Sivamani-18/awesome-github-repos","owner":"Sivamani-18","description":"This project is a web application built with Next.js, React, and Material-UI that allows users to search and browse public GitHub repositories. The application supports both authenticated and unauthenticated requests to the GitHub API, improving rate limits when a GitHub token is provided.","archived":false,"fork":false,"pushed_at":"2024-08-02T12:25:14.000Z","size":876,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-09T06:02:36.178Z","etag":null,"topics":["browsing","github","github-repositories","search","tookit","ui-components"],"latest_commit_sha":null,"homepage":"https://sivamani-18.github.io/awesome-github-repos/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sivamani-18.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-01T10:38:37.000Z","updated_at":"2024-08-11T16:54:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"01c42394-6c6d-41a2-aee1-23aaf10e5ee6","html_url":"https://github.com/Sivamani-18/awesome-github-repos","commit_stats":null,"previous_names":["sivamani-18/awesome-github-repos"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sivamani-18/awesome-github-repos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sivamani-18%2Fawesome-github-repos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sivamani-18%2Fawesome-github-repos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sivamani-18%2Fawesome-github-repos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sivamani-18%2Fawesome-github-repos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sivamani-18","download_url":"https://codeload.github.com/Sivamani-18/awesome-github-repos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sivamani-18%2Fawesome-github-repos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31868499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browsing","github","github-repositories","search","tookit","ui-components"],"created_at":"2024-11-08T00:52:37.234Z","updated_at":"2026-04-16T02:32:24.921Z","avatar_url":"https://github.com/Sivamani-18.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Repositories Explorer\n\nThis project is a Next.js web application that allows users to search for and filter GitHub repositories based on stars, language, and topics. It uses the GitHub API to fetch repositories and display them in a user-friendly interface.\n\nDemo [Click here](https://sivamani-18.github.io/awesome-github-repos/)\n\n## Features\n\n- Search for repositories by name\n- Filter repositories by language and topics\n- Sort repositories by stars\n- Clear selected filters\n- Load more repositories with infinite scroll\n- Uses GitHub API v3\n\n## Prerequisites\n\n- Node.js\n- npm or yarn\n\n\n## Tech Stack\n\n- Next.js\n- React\n- TypeScript\n- Material-UI for components\n- react-select for multi-select dropdowns\n- Axios for API requests\n\n## Installation\n\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/Sivamani-18/awesome-github-repos.git\n    ```\n2. Navigate to the project directory:\n    ```bash\n    cd awesome-github-repos\n    ```\n3. Install dependencies:\n    ```bash\n    npm install\n    ```\n4. Create a `.env.local` file in the root directory and add your GitHub token:\n    ```plaintext\n    GITHUB_TOKEN=your_github_token\n    ```\n5. Start the development server:\n    ```bash\n    npm run dev\n    ```\n\nIf you don't have a GitHub token or don't want to use one, you can leave the `GITHUB_TOKEN` variable empty, but note that you will have lower rate limits.\n\n## Usage\n\n1. Enter a search query in the search bar to find repositories by name.\n2. Use the language dropdown to filter repositories by programming language.\n3. Use the topics multi-select dropdown to filter repositories by topics.\n4. Use the stars dropdown to sort repositories by the number of stars.\n5. Click on the \"Load More\" button to fetch more repositories.\n\n\n#### State\n\n- `repositories`: List of repositories fetched from the GitHub API.\n- `page`: Current page for pagination.\n- `loading`: Boolean indicating whether data is being loaded.\n- `query`: Search query for repositories.\n- `language`: Selected language filter.\n- `sortStars`: Selected sort order for stars.\n- `selectedTopics`: Selected topics filter.\n- `error`: Error message for failed API requests.\n- `languages`: List of programming languages for the language filter.\n- `topics`: List of topics for the topics filter.\n\n#### Handlers\n\n- `handleSearch`: Updates the search query and resets the page.\n- `handleFilter`: Updates the selected language filter and resets the page.\n- `handleSortStars`: Updates the selected sort order for stars and resets the page.\n- `handleTopicFilter`: Updates the selected topics filter and resets the page.\n- `loadMore`: Increments the page to fetch more repositories.\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any changes or improvements.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivamani-18%2Fawesome-github-repos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsivamani-18%2Fawesome-github-repos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivamani-18%2Fawesome-github-repos/lists"}