- About the project
- Requirements for this Assignment
- Grading Guidelines
- Instructions to use this project
- Technologies used
Project Title: Create a simple Todo react application using the REST APIs
The goal of this assignment is to Create a simple to-do app using MERN Stack.
=====================================================================================================================================================
- As a user, I should be able to see all to-do items fetched using a REST API.
- As a user, I should be able to click a to-do item and able to see its detailed view.
- As a user, I should be able to open add a new to-do item view by clicking the add button.
- As a user, I should be able to add a to-do item by entering the title, description, due date, and time.
- As a user, I should be able to mark a to-do item as complete.
===========================================================================================================================================================
-
Clone the repository
git clone
in GIT bash(windows)/Terminal(MAC). -
Install VS code and live server extension.
-
Install Node js, MongoDB and Postman.
-
Open the folder in VS code.
-
Open a Terminal in VScode.
-
Run
npm install
in the terminal. -
Run
npm run start
in the terminal. -
Open Postman and run the following CRUD operations to test the API endpoints
- POST REQUEST - http://localhost:9000/items
- GET REQUEST - http://localhost:9000/items
- GET REQUEST - http://localhost:9000/items/id
- PUT REQUEST - http://localhost:9000/items/id
- DELETE REQUEST - http://localhost:9000/items/id
============================================================================================================================================================
MERN stack and postman