A simple and intuitive ToDo List web application to manage your daily tasks. This app allows you to add and delete tasks with an easy-to-use interface.
- Add new tasks
- Mark tasks as complete
- Delete tasks
- Responsive and user-friendly interface
todolist/
│
├── public/ # Contains static assets (e.g., images, index.html)
│ ├── css/
│
├── views/ # Contains HTML templates
│
├── app.js # Main server-side JavaScript file
├── date.js # Utility file for handling date functionality
├── index.html # Main HTML File
├── package.json # Project dependencies and scripts
└── README.md # Documentation for the repository
-
Clone the repository:
git clone https://github.com/HarshSharmaIN/todolist.git
-
Navigate to the project directory:
cd todolist
-
Install dependencies:
npm install
-
Start the development server:
node app.js
-
Open the app in your browser:
Go to
http://localhost:3000
to view the app in development mode.