From e7c60c99104fad29fe642e900a2ed6f300e10822 Mon Sep 17 00:00:00 2001 From: Priyaraj7 Date: Mon, 11 Jul 2022 19:07:09 -0700 Subject: [PATCH] add week 6 project instuctions --- projects/rest-api-project.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 projects/rest-api-project.md diff --git a/projects/rest-api-project.md b/projects/rest-api-project.md new file mode 100644 index 000000000..bc5550ded --- /dev/null +++ b/projects/rest-api-project.md @@ -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.