- Student can write a functioning react application
- Student can write a functioning Express API
- Student can request data from Express API
- Student can display data from Express API
- reset.css
- package.json
- main: server => so we can type nodemon without giving file
- setupProxy.js
- :3008
- axios
- http-proxy-middleware
- src/
- App.js => class
- index.js
- components/
- LeaderBoard.js
- Player.js
- RatioDisplayer.js
- PlayerForm.js
- server/
- index.js
- controller/
- playerController.js
- gameController.js (if time)
- express
playerController.js
- get: '/api/cheetah'
- post: '/api/woodpecker'
- put: '/api/beaver/:id'
- delete: '/api/vulture/:id'
const player = {
id, name, campus, role, wins, losses;
}