Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.98 KB

instructions-2-back-end.md

File metadata and controls

23 lines (16 loc) · 1.98 KB

Back-End Development

Each team must have completed and demo'd the working back-end of their group project by the end of the corresponding Sprint.

Technical requirements

Musts...

  • All back-end code must be generated using Express.js.
  • All dynamic routes must be completed and must respond with mock JSON data that is either hard-coded into the server code for now or proxied by the back-end from a mocking API, e.g. mockaroo.
  • All static routes must be completed and respond with the requested file.
  • The front- and back-end must be completely integrated by the end of this sprint. The front-end must be updated to make requests to the back-end for all data and functionality. Any forms on the front-end must POST data to an appropriate server route, although that route need not save the data anywhere for now.
  • Each developer must have written unit tests using the mocha and chai modules that provide at least 10% code coverage of the back-end code. Use the c8 module to verify code coverage.
  • Instructions on how to set up and run the project must be included in the README.md file in version control. It must be possible for anybody to follow the instructions on the README.md to build and run the project on their local machines.

Grading

Individuals will be graded, in part, according to...