The ToDo List is a simple and intuitive web application built with React and Vite. It offers a user-friendly interface for managing daily tasks. This project leverages the power of Vite for an optimized development experience, featuring Hot Module Replacement (HMR) for real-time updates during development. It also includes ESLint rules to ensure code quality.
This application utilizes two official Vite plugins for React:
- @vitejs/plugin-react: Utilizes Babel for Fast Refresh.
- @vitejs/plugin-react-swc: Uses SWC as a JavaScript/TypeScript compiler for Fast Refresh.
- Add new tasks to the ToDo list.
- View a list of added tasks.
- Delete tasks from the list.
- Simple and clean UI.
- Fast loading and interactive experience using Vite and React.
To run the ToDo List application locally, follow these steps:
- Clone the Repository
git clone https://github.com/your-repository/todo-list.git cd todo-list - Install Dependencies
npm install
- Run the Application
npm run dev