{"id":13565913,"url":"https://github.com/moisestech/nba-react","last_synced_at":"2025-04-09T19:47:56.824Z","repository":{"id":68218279,"uuid":"291037836","full_name":"moisestech/nba-react","owner":"moisestech","description":"Basketball League React Application","archived":false,"fork":false,"pushed_at":"2020-12-27T17:10:59.000Z","size":1545,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T23:33:06.562Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/moisestech.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}},"created_at":"2020-08-28T12:13:00.000Z","updated_at":"2021-10-31T17:54:49.000Z","dependencies_parsed_at":"2023-02-23T04:15:19.020Z","dependency_job_id":null,"html_url":"https://github.com/moisestech/nba-react","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moisestech%2Fnba-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moisestech%2Fnba-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moisestech%2Fnba-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moisestech%2Fnba-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moisestech","download_url":"https://codeload.github.com/moisestech/nba-react/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103012,"owners_count":21048231,"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":[],"created_at":"2024-08-01T13:01:57.803Z","updated_at":"2025-04-09T19:47:56.790Z","avatar_url":"https://github.com/moisestech.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"[![Netlify Status](https://api.netlify.com/api/v1/badges/47004bd3-e920-4e18-a795-e4f79f4e0fd0/deploy-status)](https://app.netlify.com/sites/nba-react/deploys)\n\n# NBA React\n\n\u003cimg src=\"https://raw.githubusercontent.com/moisestech/nba-react/master/public/assets/nba-react-logo.png\" width=\"150px\" /\u003e\n\nBasketball League React Application, displaying Teams, Players, and Game Articles with unique URL Routing Ids.\n\n## 👁️‍🗨️ Project Preview\n\n[Home](https://raw.githubusercontent.com/moisestech/nba-react/master/public/assets/nba_react_router_1.png)\n![](https://user-images.githubusercontent.com/2933430/82761753-f994a380-9db9-11ea-98af-922c37266d46.png)\n\n[Players](https://raw.githubusercontent.com/moisestech/nba-react/master/public/assets/nba_react_router_2.png)\n![](https://user-images.githubusercontent.com/2933430/82761748-f7cae000-9db9-11ea-9cce-8e6ab5dcc2c7.png)\n\n[Teams](https://raw.githubusercontent.com/moisestech/nba-react/master/public/assets/nba_react_router_3.png)\n![](https://user-images.githubusercontent.com/2933430/82761747-f699b300-9db9-11ea-9e59-a79c65fd6536.png)\n\n[Articles](https://raw.githubusercontent.com/moisestech/nba-react/master/public/assets/nba_react_router_4.png)\n![](https://user-images.githubusercontent.com/2933430/82761744-f39ec280-9db9-11ea-954d-33feb6bfc706.png)\n\n## 🗺 URL Tree\n\n```bash\n├── /                   #Home\n├── /players            #Players\n├── /players/:playerId  #Player:ID\n├── /teams/             #Teams\n├── /team/:teamId       #Team:ID\n├── /articles/          #Articles\n├── /articles/          #Article:ID\n└── /*                  #404\n```\n\n## 🌿 Application Tree\n\n```bash\n├── README.md\n├── package.json\n├── 📁 public\n│   ├── _redirects\n│   └── index.html\n├── src\n│   ├── 📁 components\n│   │   ├── App\n│   │   │   └── index.js\n│   │   ├── Articles\n│   │   │   └── index.js\n│   │   ├── Home\n│   │   │   └── index.js\n│   │   ├── Loading\n│   │   │   └── index.js\n│   │   ├── NavBar\n│   │   │   └── index.js\n│   │   ├── Players\n│   │   │   ├── components\n│   │   │   │   └── Player\n│   │   │   │       └── index.js\n│   │   │   └── index.js\n│   │   ├── Sidebar\n│   │   │   └── index.js\n│   │   ├── TeamLogo\n│   │   │   └── index.js\n│   │   ├── TeamPage\n│   │   │   ├── components\n│   │   │   │   ├── ArticleList\n│   │   │   │   │   └── index.js\n│   │   │   │   ├── Championships\n│   │   │   │   │   └── index.js\n│   │   │   │   └── Stats\n│   │   │   │       └── index.js\n│   │   │   └── index.js\n│   │   └── Teams\n│   │       ├── components\n│   │       │   └── Team\n│   │       │       └── index.js\n│   │       └── index.js\n│   ├── 📁 hooks\n│   │   ├── useArticle.js\n│   │   ├── useFetch.js\n│   │   ├── usePlayers.js\n│   │   ├── useTeam.js\n│   │   ├── useTeamNames.js\n│   │   └── useTeamsArticles.js\n│   ├── index.css\n│   └── index.js\n└── webpack.config.js\n```\n\n## ⛰️ Roadmap\n\nNBA API Suport\n[nba.com/teams](https://www.nba.com/teams)  \n[nba.com/player](https://www.nba.com/players)  \n[nba.com/player/:name](https://www.nba.com/players/)\n\n## 📝 Todos\n\n- Dark / Light Theme\n- Fix Route Params\n- Favicon\n- Upgrade to React 17\n- Add Routing Animation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoisestech%2Fnba-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoisestech%2Fnba-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoisestech%2Fnba-react/lists"}