PlanIt
Simple task planner using plain HTML/CSS/JavaScript with a small Node backend.
Tech
- Frontend: HTML, CSS, JavaScript (vanilla)
- Backend: Node.js (simple REST API in
backend/)
Features
- Add tasks
- Toggle complete
- Delete tasks
Repo layout
frontend/—index.html,css/style.css,js/script.jsbackend/— server code andpackage.json
Quick start
- Install backend deps and start server:
cd backend
npm install
npm start- Open the frontend (served by the backend or open
frontend/index.htmldirectly).
Notes
- Frontend expects the API at
http://localhost:5000/tasks. Updatefrontend/js/script.jsif needed.