Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 542 Bytes

File metadata and controls

37 lines (20 loc) · 542 Bytes

Study-Saturday-Week-1

Express and Sequelize Review

Objective: Build a fully-functioning CRUD API for 2 models, Students and Tests. Test specs are provided to guide development.

Details

- Necessary Models:
	- Student
	- Test

- Necessary routes:

	- Get all students

	- Get all test scores

	- Update student name

	- Update test score

	- Get mean test score by student ID

	- Get top scoring student

	- Delete Student

	- Delete Score

	- Add Student

	- Add Score

How to test routes with specs

- `npm t`