{"id":50763333,"url":"https://github.com/aadhar41/github-users","last_synced_at":"2026-06-11T12:03:07.578Z","repository":{"id":342793201,"uuid":"1164579899","full_name":"aadhar41/github-users","owner":"aadhar41","description":"A comprehensive React application designed to search for GitHub users, visualize profile statistics, and explore repository data via the GitHub API.","archived":false,"fork":false,"pushed_at":"2026-03-07T11:47:12.000Z","size":641,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-07T18:03:16.093Z","etag":null,"topics":["css3","git","github","html5","nodejs","npm","reactjs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aadhar41.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-23T08:48:32.000Z","updated_at":"2026-03-07T11:47:33.000Z","dependencies_parsed_at":"2026-03-07T18:06:32.076Z","dependency_job_id":null,"html_url":"https://github.com/aadhar41/github-users","commit_stats":null,"previous_names":["aadhar41/github-users"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/aadhar41/github-users","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aadhar41%2Fgithub-users","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aadhar41%2Fgithub-users/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aadhar41%2Fgithub-users/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aadhar41%2Fgithub-users/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aadhar41","download_url":"https://codeload.github.com/aadhar41/github-users/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aadhar41%2Fgithub-users/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34197394,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":["css3","git","github","html5","nodejs","npm","reactjs"],"created_at":"2026-06-11T12:03:06.595Z","updated_at":"2026-06-11T12:03:07.571Z","avatar_url":"https://github.com/aadhar41.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# GitHub User Search\n\nA comprehensive React application designed to search for GitHub users, visualize profile statistics, and explore repository data via the GitHub API.\n\n![Login Page](./src/images/login-img.svg)\n\n## 🚀 Features\n\n* **User Search**: Real-time search to retrieve comprehensive GitHub profile information.\n* **Dynamic Charts**: Data visualization for Top Languages, Most Popular Repos, and Most Forked Repos using FusionCharts.\n* **Detailed Profiles**: Displays user bio, company, location, blog, and more.\n* **Followers List**: Browse and navigate to user followers with quick links.\n* **Secure Authentication**: Session management powered by Auth0.\n* **Responsive Design**: Mobile-friendly layout using Styled Components.\n* **Rate Limit Tracking**: Real-time monitoring of remaining GitHub API requests.\n\n## 🛠️ Tech Stack\n\n* **Frontend**: [React](https://reactjs.org/)\n* **Styling**: [Styled Components](https://styled-components.com/)\n* **Charts**: [FusionCharts](https://www.fusioncharts.com/)\n* **Routing**: [React Router Dom (v5)](https://reactrouter.com/web/guides/quick-start)\n* **API Requests**: [Axios](https://axios-http.com/)\n* **Authentication**: [Auth0](https://auth0.com/)\n* **Icons**: [React Icons](https://react-icons.github.io/react-icons/)\n\n---\n\n## 🏁 Getting Started\n\n### Prerequisites\n\n* Node.js and npm installed.\n* A GitHub account.\n* An Auth0 account.\n\n### Installation\n\n1. **Clone the repository**\n```bash\ngit clone https://github.com/aadhar41/github-users.git\ncd github-users\n\n```\n\n\n2. **Install dependencies**\n```bash\nnpm install\n\n```\n\n\n3. **Environment Variables**\nCreate a `.env` file in the root directory:\n```env\nREACT_APP_AUTH0_DOMAIN=your_auth0_domain\nREACT_APP_AUTH0_CLIENT_ID=your_auth0_client_id\n\n```\n\n\n4. **Run the application**\n```bash\nnpm start\n\n```\n\n\nThe app will run at `http://localhost:3000`.\n\n---\n\n## 🏗️ Technical Guide\n\n### Styled Components\n\nFor styling, use the `styled-components` library.\n\n```jsx\nimport styled from \"styled-components\";\n\nconst Component = () =\u003e {\n  return \u003cWrapper\u003eContent\u003c/Wrapper\u003e;\n}\n\nconst Wrapper = styled.article`\n  /* Add your CSS here */\n`;\n\n```\n\n### Routing\n\nThis project uses `react-router-dom` v5.2.0.\n\n* `\u003cSwitch\u003e` renders the first matching child `\u003cRoute\u003e`.\n* A `\u003cRoute path=\"*\"\u003e` serves as a catch-all for undefined paths.\n\n### GitHub API Endpoints\n\n* **Root**: `https://api.github.com`\n* **User**: `https://api.github.com/users/{username}`\n* **Repos**: `https://api.github.com/users/{username}/repos?per_page=100`\n* **Followers**: `https://api.github.com/users/{username}/followers`\n* **Rate Limit**: `https://api.github.com/rate_limit`\n\n\u003e **Note**: Unauthenticated requests are limited to 60 requests per hour based on the originating IP address.\n\n---\n\n## 🔐 Auth0 Configuration\n\n1. Create a **Single Page Web Application** in your Auth0 Dashboard.\n2. In **Settings**, configure the following for `http://localhost:3000`:\n* Allowed Callback URLs\n* Allowed Logout URLs\n* Allowed Web Origins\n\n\n3. Activate desired **Connections** (Email/Social).\n4. Copy your **Domain** and **Client ID** to your `.env` file.\n\n---\n\n## 🤝 Community \u0026 Contributions\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n* **Code of Conduct**: Please read our [Code of Conduct](CODE_OF_CONDUCT.md) to understand the standards of behavior we expect in our community.\n* **Contributing**: Check out the [Contributing Guidelines](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.\n* **Security**: If you find a security vulnerability, please follow our [Security Policy](SECURITY.md).\n* **Issue Templates**: When opening an issue, please use the provided [Bug Report](.github/ISSUE_TEMPLATE/bug_report.md) or [Feature Request](.github/ISSUE_TEMPLATE/feature_request.md) templates.\n\n---\n\n## 🚀 Deployment\n\n### Netlify Setup\n\nThis project is optimized for [Netlify](https://www.netlify.com/).\n\n**1. Fix Build Warnings**\nUpdate your `package.json` to prevent build failures due to warnings:\n\n```json\n\"build\": \"CI= react-scripts build\",\n\n```\n\n**2. Handling Client-Side Routing**\nTo ensure React Router works correctly on Netlify, create a `_redirects` file in the `public` folder:\n\n```text\n/* /index.html   200\n\n```\n## ⚓ API Reference\n\n- [GitHub API Documentation](https://docs.github.com/en/rest)\n- [Rate Limit Info](https://api.github.com/rate_limit)\n\n---\n\n## 📜 License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faadhar41%2Fgithub-users","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faadhar41%2Fgithub-users","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faadhar41%2Fgithub-users/lists"}