forked from Techtonica/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Project - Building a REST API with Node and Express | ||
|
||
### Introduction | ||
|
||
A RESTful API is an Application Programming Interface (API) that uses HTTP verbs like GET, PUT, POST, and DELETE to operate data. Also referred to as RESTful web services, RESTful APIs are based on the REpresentational State Transfer (REST) approach, an architectural style that enables developers to manipulate data. | ||
|
||
### General guidelines for projects: | ||
|
||
- In this project, you are going to build a REST API to `manage books` with Node.js and Express. | ||
- You will use a simple JavaScript array to store data like Books. | ||
- By Friday afternoon (pair programming time) create your new branch in your assignments repo, push your initial commit up to GitHub and your PR ready to go for your partner. | ||
|
||
### Basic Requirements | ||
|
||
- Create a app to store information about books like ISBN of the book, title, author, published date, publisher and number of pages. | ||
- Add basic CRUD functionality. You will be able to send requests to it to create, read, update and delete Book entities. | ||
|
||
### Frequently Asked Questions | ||
|
||
- We can add common FAQs here. Open a PR if you have any questions. |