A simple and modern Todo List web application built with Node.js, Express, MongoDB (Atlas), and EJS.
Live Demo
https://tutedude-todo-mongodb.onrender.com/
git clone https://github.com/akurathikamal/TUTEDUDE_TODO_MONGODB.git
cd TUTEDUDE_TODO_MONGODB
npm install
Set up environment variables:
Create a .env
file in the root directory and add your MongoDB connection string:
MONGODB_URI=your-mongodb-atlas-connection-string
npm start
The app will run on http://localhost:3000
.
├── public/ # Static files (CSS, JS)
├── views/ # EJS templates
├── .env # Environment variables
├── index.js # Main server file
├── package.json
└── README.md