lucie
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
index.ts
https://lucie_123--a6c6e536363511f0b9f49e149126039e.web.val.run
A full-stack task manager application built on Val Town.
- 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
/
├── 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
- Backend: Hono.js, SQLite, JWT
- Frontend: React, TailwindCSS
- Storage: Val Town SQLite