TaskMaster - Full-Stack Task Management Application Table of Contents Features Tech Stack Installation API Documentation Testing Guide UI Walkthrough Troubleshooting Features Create, read, update, and delete tasks Mark tasks as complete/incomplete Responsive design (works on mobile/desktop) Persistent data storage (JSON file) RESTful API backend Tech Stack Component Technology Frontend React 18, CSS3 Backend Node.js, Express Data Storage JSON (file) API Testing Postman, curl Installation 1. Backend Setup # Clone repository git clone https://github.com/SSwanshi/TaskMaster.git cd taskmaster/server # Install dependencies npm install # Start server (runs on port 5000) node server.js