A simple and intuitive task management application that allows users to efficiently manage their tasks with basic and advanced features. This application provides features like adding tasks, deleting tasks, searching for tasks, marking them as completed, setting priorities, sorting them, and storing them persistently in local storage.
- Task Input: Users can add tasks with a title.
- Task Deletion: Tasks can be deleted individually.
- Task Persistence: All tasks are saved in local storage, ensuring they remain available even after refreshing the browser.
- Task Search: Use the search bar to quickly find tasks by title or description.
- Task Completion: Mark tasks as completed or incomplete.
- Priority Setting: Assign a priority level (e.g., High, Medium, Low) to tasks.
- Task Sorting: Sort tasks by criteria such as completion status, priority, or creation date.
- UI Animation: Enhance the user interface with animations for a smoother user experience.
- Node.js installed on your system.
- A code editor (e.g., VS Code) for local development.
- Basic knowledge of React.js and Tailwind CSS.
-
Clone the Repository:
git clone https://github.com/AvinashKumarMahato/Task-Manager.git cd task-manager
-
Install Dependencies: Run the following command to install all required dependencies:
npm install
-
Start the Development Server: Launch the application locally:
npm run dev
-
Access the Application: Open your browser and navigate to:
http://localhost:5173/
-
Local Storage:
- Local storage is used to persist tasks, assuming the browser environment supports it.
-
Task Completion:
- A "completed" task is indicated visually with a strikethrough or a different style.
-
Priority System:
- Priority levels are predefined as High, Medium, and Low, with sorting functionality based on these levels.
-
Responsiveness:
- The application is built with Tailwind CSS for responsiveness and is optimized for both desktop and mobile devices.
-
UI Animations:
- Animations are kept minimal for better performance, using Tailwind's transition utilities.
- React.js: Component-based architecture for building the user interface.
- Tailwind CSS: Utility-first CSS framework for fast styling.
- Local Storage: Browser storage for persisting tasks.