A full-stack Todo List application built with React, Express.js, and MongoDB.
Navigate to the backend directory:
cd backend
Install dependencies:
npm install
Create a .env
file in the backend directory with the following content:
PORT=5000
MONGODB_URI=mongodb://localhost:27017/todo-app
Start the development server:
npm run dev
Navigate to the frontend directory:
cd frontend
Install dependencies:
npm install
Start the development server:
npm start
Frontend:
Backend: