A Modern Task Management Application
Comprehensive, client-side task management dashboard with analytics, calendar view, and dark mode
TaskMaster is a feature-rich, client-side task management application built with React and TypeScript. It provides a comprehensive solution for managing tasks with features like subtasks, calendar integration, analytics dashboard, and more—all running entirely in the browser with localStorage persistence.
| Feature | Description |
|---|---|
| 📊 Dashboard Analytics | Visual charts showing task distribution by priority and 30-day activity trends |
| ✅ Task Management | Full CRUD operations with subtasks, priorities, categories, and deadlines |
| 📅 Calendar View | Interactive calendar with drag-and-drop task scheduling |
| 🗄️ Archive & Recycle Bin | Soft delete with recovery options |
| 📥 Import/Export | JSON and CSV support for data backup and migration |
| 🌙 Dark Mode | Toggle between light and dark themes |
| 💾 Persistent Storage | All data saved automatically to localStorage |
| 📱 Responsive Design | Works seamlessly on desktop and mobile |
┌─────────────────────────────────────────────────────────────┐
│ Frontend │
├─────────────────────────────────────────────────────────────┤
│ React 18.3 + TypeScript 5.2 │
│ ├── UI Components (Custom) │
│ ├── State Management (React Hooks + useMemo) │
│ └── Styling (TailwindCSS CDN) │
├─────────────────────────────────────────────────────────────┤
│ Libraries: │
│ ├── Recharts (Charts & Analytics) │
│ └── Lucide React (Icons) │
├─────────────────────────────────────────────────────────────┤
│ Build Tool: Vite 7.3 │
├─────────────────────────────────────────────────────────────┤
│ Storage: Browser LocalStorage │
│ ├── utm_user (User session) │
│ ├── utm_tasks (Task data) │
│ ├── utm_activities (Activity log) │
│ └── utm_theme (Theme preference) │
└─────────────────────────────────────────────────────────────┘
TaskMaster/
├── App.tsx # Main application component (~2000 lines)
│ ├── Types & Interfaces
│ ├── Constants & Helpers
│ ├── Modal Component
│ ├── Toast Component
│ ├── TaskCard Component
│ └── Main App Logic
├── index.tsx # React entry point
├── index.html # HTML template with TailwindCSS config
├── vite.config.ts # Vite configuration
├── package.json # Dependencies
├── tsconfig.json # TypeScript config
└── metadata.json # App metadata
- Node.js (v18 or higher recommended)
- npm or yarn
# Clone the repository
git clone <repository-url>
cd TaskMaster
# Install dependencies
npm install
# Start development server
npm run devThe application will be available at http://localhost:3000
npm run build
npm run previewUse the following credentials to login:
- Username:
admin - Password:
123
| Menu | Description |
|---|---|
| Dashboard | Overview with statistics and charts |
| My Tasks | Full task list with filters and views (Grid/List/Kanban) |
| Calendar | Monthly calendar with task visualization |
| Archived | View archived tasks |
| Recycle Bin | Recover or permanently delete tasks |
| Property | Options |
|---|---|
| Priority | High, Medium, Low |
| Category | Work, Personal, Shopping, Health, Other |
| Status | Pending, Completed |
| Dates | Start Date, Deadline |
| Subtasks | Unlimited checklist items |
| Image | Optional URL attachment |
- Export JSON - Backup all tasks as JSON file
- Export CSV - Export tasks for Excel/Sheets
- Import JSON - Restore from backup
- Import CSV - Import from spreadsheet
- Reset to Default - Restore sample data
| Command | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm run preview |
Preview production build |
| Component | Purpose |
|---|---|
Modal |
Reusable modal dialog |
ToastContainer |
Notification system |
TaskCard |
Task display (supports Grid/List/Board views) |
The application uses React hooks for state management:
useStatefor local stateuseMemofor computed values (stats, filtered tasks, charts)useEffectfor side effects (localStorage sync)
This project is open source and available under the MIT License.
Built with ❤️ using React + TypeScript + Vite