- Building a RESTful API.
- Performing CRUD operations.
- Writing API endpoints.
- Fork and Clone this repository.
- CD into the folder where you cloned the repository.
Use Node.js and Express to build an API that performs CRUD operations on users.
- Add a
.gitignore
file appropriate fornode.js
projects. - Add a new
package.json
. - Add a
server
script topackage.json
that runs the API usingnodemon
.
Add the code necessary to create a Web API and implement the following endpoints:
Method | URL | Description |
---|---|---|
POST | /api/users | Creates a user using the information sent inside the request body . |
GET | /api/users | Returns an array users. |
GET | /api/users/:id | Returns the user object with the specified id . |
DELETE | /api/users/:id | Removes the user with the specified id and returns the deleted user. |
PUT | /api/users/:id | Updates the user with the specified id using data from the request body . Returns the modified user |
Each User resource should conform to the following structure (AKA schema):
{
id: "a_unique_id", // hint: use the shortid npm package to generate it
name: "Jane Doe", // String, required
bio: "Not Tarzan's Wife, another Jane", // String, required
}
When the client makes a POST
request to /api/users
:
-
If the request body is missing the
name
orbio
property:- respond with HTTP status code
400
(Bad Request). - return the following JSON response:
{ errorMessage: "Please provide name and bio for the user." }
.
- respond with HTTP status code
-
If the information about the user is valid:
- save the new user the the database.
- respond with HTTP status code
201
(Created). - return the newly created user document.
-
If there's an error while saving the user:
- respond with HTTP status code
500
(Server Error). - return the following JSON object:
{ errorMessage: "There was an error while saving the user to the database" }
.
- respond with HTTP status code
When the client makes a GET
request to /api/users
:
- If there's an error in retrieving the users from the database:
- respond with HTTP status code
500
. - return the following JSON object:
{ errorMessage: "The users information could not be retrieved." }
.
- respond with HTTP status code
When the client makes a GET
request to /api/users/:id
:
-
If the user with the specified
id
is not found:- respond with HTTP status code
404
(Not Found). - return the following JSON object:
{ message: "The user with the specified ID does not exist." }
.
- respond with HTTP status code
-
If there's an error in retrieving the user from the database:
- respond with HTTP status code
500
. - return the following JSON object:
{ errorMessage: "The user information could not be retrieved." }
.
- respond with HTTP status code
When the client makes a DELETE
request to /api/users/:id
:
-
If the user with the specified
id
is not found:- respond with HTTP status code
404
(Not Found). - return the following JSON object:
{ message: "The user with the specified ID does not exist." }
.
- respond with HTTP status code
-
If there's an error in removing the user from the database:
- respond with HTTP status code
500
. - return the following JSON object:
{ errorMessage: "The user could not be removed" }
.
- respond with HTTP status code
When the client makes a PUT
request to /api/users/:id
:
-
If the user with the specified
id
is not found:- respond with HTTP status code
404
(Not Found). - return the following JSON object:
{ message: "The user with the specified ID does not exist." }
.
- respond with HTTP status code
-
If the request body is missing the
name
orbio
property:- respond with HTTP status code
400
(Bad Request). - return the following JSON response:
{ errorMessage: "Please provide name and bio for the user." }
.
- respond with HTTP status code
-
If there's an error when updating the user:
- respond with HTTP status code
500
. - return the following JSON object:
{ errorMessage: "The user information could not be modified." }
.
- respond with HTTP status code
-
If the user is found and the new information is valid:
- update the user document in the database using the new information sent in the
request body
. - respond with HTTP status code
200
(OK). - return the newly updated user document.
- update the user document in the database using the new information sent in the
To work on the stretch problems you'll need to enable the cors
middleware. Follow these steps:
- add the
cors
npm module:npm i cors
. - add
server.use(cors())
afterserver.use(express.json())
.
Create a new React application and connect it to your server:
- the React application can be anywhere, but, for this project create it inside the folder for the solution.
- connect to the
/api/users
endpoint in the API and show the list of users. - add a delete button to each displayed user that will remove it from the server.
- add forms to add and update data.
- Style the list of users however you see fit.
- Submit a Pull-Request to merge
<firstName-lastName>
Branch intomain
(student's Repo). Please don't merge your own pull request