Skip to content

Commit

Permalink
add week 6 project instuctions
Browse files Browse the repository at this point in the history
  • Loading branch information
priyaraj7 committed Jul 12, 2022
1 parent 6ce7eb4 commit e7c60c9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions projects/rest-api-project.md
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.

0 comments on commit e7c60c9

Please sign in to comment.