{"id":20802078,"url":"https://github.com/saadazghour/frontend-coding-challenge","last_synced_at":"2026-02-28T10:03:37.012Z","repository":{"id":55357878,"uuid":"189517909","full_name":"saadazghour/frontend-coding-challenge","owner":"saadazghour","description":":hammer:  Web App that liste the most starred Github repos that were created in the last 30 days. You'll be fetching the sorted JSON data directly from the Github API .","archived":false,"fork":false,"pushed_at":"2026-02-15T01:23:56.000Z","size":1748,"stargazers_count":7,"open_issues_count":4,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-15T08:45:05.459Z","etag":null,"topics":["challenge-solved","coding-challenge","coding-challenges","front-end-app","github-api","hidden-founders","javscript","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/saadazghour.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":"2019-05-31T03:00:23.000Z","updated_at":"2026-02-15T01:23:53.000Z","dependencies_parsed_at":"2023-02-02T20:31:44.096Z","dependency_job_id":null,"html_url":"https://github.com/saadazghour/frontend-coding-challenge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/saadazghour/frontend-coding-challenge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadazghour%2Ffrontend-coding-challenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadazghour%2Ffrontend-coding-challenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadazghour%2Ffrontend-coding-challenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadazghour%2Ffrontend-coding-challenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saadazghour","download_url":"https://codeload.github.com/saadazghour/frontend-coding-challenge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saadazghour%2Ffrontend-coding-challenge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29929601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T09:58:13.507Z","status":"ssl_error","status_checked_at":"2026-02-28T09:57:57.047Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["challenge-solved","coding-challenge","coding-challenges","front-end-app","github-api","hidden-founders","javscript","reactjs"],"created_at":"2024-11-17T18:28:03.489Z","updated_at":"2026-02-28T10:03:36.978Z","avatar_url":"https://github.com/saadazghour.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![JavaScript Style Guide](https://img.shields.io/badge/Success-brightgreen.svg?style=flat-square\u0026for-the-badge\u0026logo=Verizon)](https://github.com/Azghour-Saad/frontend-coding-challenge) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg?style=flat-square)](https://standardjs.com)\n# Front-end coding challenge\n\n## Idea of the App\n\nThe task is to implement a small webapp that will list the most starred Github repos that were created in the last 30 days. You'll be fetching the sorted JSON data directly from the Github API (Github API explained down below).\n\n\n## Features\n\n- [x] As a User I should be able to list the most starred Github repos that were created in the last 30 days.\n- [x] As a User I should see the results as a list. One repository per row.\n- [x] As a User I should be able to see for each repo/row the following details :\n    - Repository name\n    - Repository description\n    - Number of stars for the repo.\n    - Number of issues for the repo.\n    - Username and avatar of the owner.\n- [x] As a User I should be able to keep scrolling and new results should appear (pagination).\n\n\n## How to get the data from Github\n\nTo get the most starred Github repos created in the last 30 days (relative to 2017-11-22), you'll need to call the following endpoint :\n`https://api.github.com/search/repositories?q=created:\u003e2017-10-22\u0026sort=stars\u0026order=desc`\nThe JSON data from Github will be paginated (you'll receive around 100 repos per JSON page).\nTo get the 2nd page, you add `\u0026page=2` to the end of your API request :\n`https://api.github.com/search/repositories?q=created:\u003e2017-10-22\u0026sort=stars\u0026order=desc\u0026page=2`\nTo get the 3rd page, you add `\u0026page=3` ... etc\nYou can read more about the Github API over [here](https://developer.github.com/v3/search/#search-repositories\n).\n\n\n## ScreenShoot\n\n![alt text](ScreenShoot.png)\n\nHere's what each element represents :\n\n![alt text](https://raw.githubusercontent.com/hiddenfounders/frontend-coding-challenge/master/row_explained.png)\n\n\n## Technologies Used in Project\n\n- React\n- Material - UI\n- Moment.js\n- Axios\n- Github API\n\n\n## Setup\n\n```\ngit clone https://github.com/Azghour-Saad/frontend-coding-challenge.git\n\ncd frontend-coding-challenge\n\nnpm install\n```\n\n\n## Running the app\n\nTo get the app up and running run :\n\n```\nnpm start\n```\n\n\n\u003cb\u003eFinnaly, The project will be available at :   \u003c/b\u003e  **http://localhost:3000 to view it in the browser.**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaadazghour%2Ffrontend-coding-challenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaadazghour%2Ffrontend-coding-challenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaadazghour%2Ffrontend-coding-challenge/lists"}