Personal Task Manager

A full-stack task manager application built on Val Town.

Features

  • User registration and login with JWT authentication
  • Create, read, update, and delete tasks
  • Responsive UI for desktop and mobile
  • Secure API endpoints
  • Data persistence with SQLite

Project Structure

/
├── backend/
│   ├── database/
│   │   ├── migrations.ts    # Database schema
│   │   └── queries.ts       # Database queries
│   ├── routes/
│   │   ├── auth.ts          # Authentication routes
│   │   ├── tasks.ts         # Task management routes
│   │   └── static.ts        # Static file serving
│   └── index.ts             # Main entry point
├── frontend/
│   ├── components/
│   │   ├── App.tsx          # Main application component
│   │   ├── Login.tsx        # Login component
│   │   ├── Register.tsx     # Registration component
│   │   ├── TaskList.tsx     # Task list component
│   │   └── TaskForm.tsx     # Task creation/editing form
│   ├── index.html           # Main HTML template
│   └── index.tsx            # Frontend entry point
└── shared/
    └── types.ts             # Shared type definitions

Technologies Used

  • Backend: Hono.js, SQLite, JWT
  • Frontend: React, TailwindCSS
  • Storage: Val Town SQLite