Read these instructions carefully. Understand exactly what is expected before starting this Sprint Challenge.
This challenge allows you to practice the concepts and techniques learned over the past sprint and apply them in a concrete project. This sprint explored how to build web services based on the REST (REpresentational State Transfer) architectural style. During this sprint, you studied Node.js and Express, server side routing, how to write Express middleware and how to deploy an API to Heroku. In your challenge this week, you will demonstrate your mastery of these skills by designing and creating a web API to manage the following resources: Projects
and Actions
.
This is an individual assessment. All work must be your own. Your challenge score is a measure of your ability to work independently using the material covered through this sprint. You need to demonstrate proficiency in the concepts and objectives introduced and practiced in preceding days.
You are not allowed to collaborate during the sprint challenge. However, you are encouraged to follow the twenty-minute rule and seek support from your TL if you need direction.
You have three hours to complete this challenge. Plan your time accordingly.
In meeting the minimum viable product (MVP) specifications listed below, your project should provide an API that has Create, Read, Update and Delete (CRUD) functionality for both projects
and actions
.
The description of the structure and extra information about each resource stored in the included database (./data/lambda.db3
) is listed below.
Field | Data Type | Metadata |
---|---|---|
id | number | no need to provide it when creating projects, the database will generate it |
name | string | required. |
description | string | required. |
completed | boolean | used to indicate if the project has been completed, not required |
Field | Data Type | Metadata |
---|---|---|
id | number | no need to provide it when creating posts, the database will automatically generate it. |
project_id | number | required, must be the id of an existing project. |
description | string | up to 128 characters long, required. |
notes | string | no size limit, required. Used to record additional notes or requirements to complete the action. |
completed | boolean | used to indicate if the action has been completed, not required |
The /data/helpers
folder includes files you can use to manage the persistence of project and action data. These files are projectModel.js
and actionModel.js
. Both files publish the following api, which you can use to store, modify and retrieve each resource:
All these helper methods return a promise. Remember to use .then().catch() or async/await.
get()
: resolves to an array of all the resources contained in the database. If you pass anid
to this method it will return the resource with that id if one is found.insert()
: calling insert passing it a resource object will add it to the database and return the newly created resource.update()
: accepts two arguments, the first is theid
of the resource to update, and the second is an object with thechanges
to apply. It returns the updated resource. If a resource with the providedid
is not found, the method returnsnull
.remove()
: the remove method accepts anid
as it's first parameter and, upon successfully deleting the resource from the database, returns the number of records deleted.
The projectModel.js
helper includes an extra method called getProjectActions()
that takes a project id as it's only argument and returns a list of all the actions for the project.
We have provided test data for all the resources.
Commit your code regularly and meaningfully. This helps both you (in case you ever need to return to old code for any number of reasons) and your team lead as the evaluate your solution.
Be prepared to demonstrate your understanding of this week's concepts by answering questions on the following topics. You might prepare by writing down your own answers before hand.
- The core features of Node.js and Express and why they are useful.
- Understand and explain the use of Middleware?
- The basic principles of the REST architectural style.
- Understand and explain the use of Express Routers.
- Describe tooling used to manually test the correctness of an API.
You are expected to be able to answer questions in these areas. Your responses contribute to your Sprint Challenge grade.
- Create a forked copy of this project
- Add your team lead as collaborator on Github
- Clone your OWN version of the repository (Not Lambda's by mistake!)
- Create a new branch: git checkout -b
<firstName-lastName>
. - Implement the project on your newly created
<firstName-lastName>
branch, committing changes regularly - Push commits: git push origin
<firstName-lastName>
Your finished project must include all of the following requirements:
- An npm script named "server" that uses
nodemon
to run the API server. - Use nodemon as a development time dependency only that is not deployed to production.
- An npm script named "start" that uses
node
to run the API server.
- Design and build endpoints for performing CRUD operations on projects and actions. When adding an action, make sure the
project_id
provided belongs to an existingproject
. If you try to add an action with anid
of 3 and there is no project with thatid
the database will return an error. - Add an endpoint for retrieving the list of actions for a project.
- Use an HTTP client like
postman
orinsomnia
to test the API's endpoints. - Use Express Routers to organize the API's code.
In your solution, it is essential that you follow best practices and produce clean and professional results. You will be scored on your adherence to proper code style and good organization. Schedule time to review, refine, and assess your work and perform basic professional polishing including spell-checking and grammar-checking on your work. It is better to submit a challenge that meets MVP than one that attempts too much and does not.
After finishing your required elements, you can push your work further. These goals may or may not be things you have learned in this module but they build on the material you just studied. Time allowing, stretch your limits and see if you can deliver on the following optional goals:
- Deploy the API to Heroku.
- Configure the API to support environment variables.
- Use middleware for validation of incoming data.
Follow these steps for completing your project.
- Submit a Pull-Request to merge Branch into master (student's Repo). Please don't merge your own pull request
- Add your team lead as a reviewer on the pull-request
- Your team lead will count the project as complete after receiving your pull-request