{"id":23296455,"url":"https://github.com/baslani/github-user-search","last_synced_at":"2026-04-12T10:39:07.117Z","repository":{"id":191423805,"uuid":"684554135","full_name":"BAslani/GitHub-user-search","owner":"BAslani","description":"react tutorial project from John Smilga's react course","archived":false,"fork":false,"pushed_at":"2023-09-15T08:45:18.000Z","size":1156,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T19:48:49.406Z","etag":null,"topics":["auth0","css","fusion-charts","html","javascript","react","react-icons","react-router-dom","styled-components"],"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/BAslani.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}},"created_at":"2023-08-29T11:28:03.000Z","updated_at":"2023-08-29T11:32:16.000Z","dependencies_parsed_at":"2023-08-29T21:48:52.080Z","dependency_job_id":"fcd0f53a-1863-4d5f-a706-9942b9b93b15","html_url":"https://github.com/BAslani/GitHub-user-search","commit_stats":null,"previous_names":["baslani/github-user-search"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BAslani/GitHub-user-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BAslani%2FGitHub-user-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BAslani%2FGitHub-user-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BAslani%2FGitHub-user-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BAslani%2FGitHub-user-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BAslani","download_url":"https://codeload.github.com/BAslani/GitHub-user-search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BAslani%2FGitHub-user-search/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260308107,"owners_count":22989804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["auth0","css","fusion-charts","html","javascript","react","react-icons","react-router-dom","styled-components"],"created_at":"2024-12-20T07:11:45.732Z","updated_at":"2025-12-30T22:31:49.787Z","avatar_url":"https://github.com/BAslani.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Starter Project\n\n- css provided (global styles, styled components)\n- folders/files already setup\n- all imports included (warnings)\n- index.js for easier imports\n\n## Styled Components\n\n[Styled-Components - Main Docs](https://styled-components.com/)\n\n```jsx\nimport styled from \"styled-components\";\n\nconst ReactComponent = () =\u003e {\n // logic here\n return \u003cWrapper\u003e\n {some content}\n \u003c/Wrapper\u003e\n}\n\n\nconst Wrapper = styled.htmlElement`\nwrite your styles here\n`\nexport default ReactComponent\n```\n\n## React Icons\n\n[React Icons - Main Docs](https://react-icons.github.io/react-icons/)\n\n```jsx\nimport { FiUsers, FiUserPlus } from 'react-icons/fi';\n\u003cFiUsers className='nameOfTheClass'\u003e \u003c/FiUsers\u003e;\n```\n\n## React Router Dom\n\nversion used - \"react-router-dom\": \"^5.2.0\",\n\n- [react-router-dom - Main Docs](https://reactrouter.com/web/guides/quick-start)\n\n- \u003cSwitch\u003e renders the first child \u003cRoute\u003e that matches\n- A \u003cRoute path=\"*\"\u003e always matches\n\n## Gihthub API\n\n- [Root Endpoint](https://api.github.com)\n- [Get User](https://api.github.com/users/wesbos)\n- [Repos](https://api.github.com/users/john-smilga/repos?per_page=100)\n- [Followers](https://api.github.com/users/john-smilga/followers)\n- [Rate Limit](https://api.github.com/rate_limit)\n\n  For unauthenticated requests, the rate limit allows for up to 60 requests per hour. Unauthenticated requests are associated with the originating IP address, and not the user making requests.\n\n## Fusion Charts\n\n- [Fusion Charts - Main Docs](https://www.fusioncharts.com/)\n- [First React Chart](https://www.fusioncharts.com/dev/getting-started/react/your-first-chart-using-react)\n- [List Of Charts](https://www.fusioncharts.com/dev/chart-guide/list-of-charts)\n- [Themes](https://www.fusioncharts.com/dev/themes/introduction-to-themes)\n\n## Auth0\n\n- [Auth0 - Main Docs](https://auth0.com/)\n\n- Create Application\n- Choose : Single Page Web Applications\n- Choose : React\n- Go to Settings Tab\n- Copy/Paste Domain, ClientID - can be public (or use .env)\n- Add Domain -\n  for now http://localhost:3000 (DON'T COPY PASTE FROM URL BAR)\n\n  - Allowed Callback URLs\n  - Allowed Logout URLs\n  - Allowed Web Origins\n  - SAVE CHANGES!!!!!!!!!!!!!!!\n\n- Connections\n  email,social\n\n- [React SDK Docs](https://auth0.com/docs/libraries/auth0-react)\n- [REACT SDK API Docs](https://auth0.github.io/auth0-react/)\n\n## Deployment\n\n[Netlify](https://www.netlify.com/)\n\n## Additional Info\n\n#### Redirects with react-router-dom\n\nIn order for routing to work on netlify, redirects was added to the public folder\n\n- \\_redirects file in public\n\n```\n\n/*    /index.html   200\n\n```\n\n[Redirects Blog Post](https://dev.to/dance2die/page-not-found-on-netlify-with-react-router-58mc)\n\n#### Warnings and create-react-app\n\npackage.json\n\n```js\n\"build\": \"CI= react-scripts build\",\n```\n\n[create-react-app Warning Fix Blog Post](https://community.netlify.com/t/how-to-fix-build-failures-with-create-react-app-in-production/17752)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaslani%2Fgithub-user-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbaslani%2Fgithub-user-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbaslani%2Fgithub-user-search/lists"}