This is a simple Todo application that allows you to ad toggle and delete tasks.
You need to create a MongoDB database. To do that, go to https://cloud.mongodb.com and create a database. Name it Todo. Copy the connection string (check the video in myCourses for the details).
After making the database, you have to update the app.js file.
const uri = "mongodb+srv://<username>:<password>@----.----.mongodb.net"The backend is a Node.js server that uses Express and MongoDB. Steps to follow: Clone the repository for the Backend and run the following commands: 1. Install NPM 2. Run the server 3. Open http://localhost:5050 in your browser
The frontend is a React application and uses the backend to fetch and add to do tasks. Steps to follow: Clone the repository for the Frontend and run the following commands: 1. Install NPM 2. Run the server 3. Open http://localhost:3000 in your browser
You can use the components such as <Row>, <Col> and <Button> from react bootstrap. Also you can download bootstrap.min.css from https://bootswatch.com
You can deploy the backend and frontend to either one of the following platforms: