This app lets you search through NBA players and view their statistics. Good for those who play Fantasy Basketball or simply avid fans exploring their curiosity. You will also be able to view team standings and recent game results.
Currently this app displays all team player stats. All data and images are pulled from official NBA sources. Api can be found here: http://data.nba.net/
git clone https://github.com/kammanz/raptors-app.git
npm install
npm start
Utilizing ES Lint, Prettier and VS Code standards. Further config details can be found at this article here
To run lint:
yarn lint
To fix most lint errors:
yarn lint:fix
Also added Husky githooks preventing git commit errors and must be fixed prior to commit. Warnings will be ignored.
npm install enzyme enzyme-adapter-react-16 enzyme-to-json --save-dev
or using Yarn:
yarn add enzyme enzyme-adapter-react-16 react-test-renderer enzyme-to-json --dev
In the src/ directory, create a new file called setupTests.js
In that file, write the following at top of file:
import { configure } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
configure({ adapter: new Adapter() });
- React - The JS framework used
- Redux - Utilizing Redux store, dispatching actions
- Axios - Promise based HTTP client
- CSS Modules - CSS processing
- Nikhil Tumne - Co-Founder, Team Lead Developer, Designer - Freshly Grazed
- Kaumil Manzoor - Co-Founder, Front End Developer - Kammanz
This project is licensed under the MIT License - see the LICENSE.md file for details