MNDList is a simple ToDo List web app built with Node.js and Express. It allows users to add and delete notes, which are stored directly in browser cookies — no database required.
- ✅ Add notes
- 🗑️ Delete notes
- 🍪 Notes are saved using cookies (per browser)
- 🖥️ Simple and clean user interface
- Node.js
- Express.js
- cookie-parser
- HTML & CSS (for frontend)
- Clone this repository:
git clone https://github.com/your-username/MNDList.git
cd MNDList- Install dependencies:
npm install- Start the server:
node app.js- Open your browser and go to:
http://localhost:2100
- Notes are stored locally in the user's browser using cookies.
- When a note is added or deleted, the cookie is updated.
- Since no database is used, the notes are only available in that browser session.
- Notes are saved only in the browser (no sync across devices).
- Clearing cookies will delete all saved notes.
- No login or user authentication.
Pull requests are welcome! If you'd like to contribute or suggest features, feel free to open an issue or fork the repo.
