Public
Like
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
A comprehensive travel booking application with user authentication and ticket pricing in Indian Rupees.
- User authentication (login/register)
- Browse domestic and international destinations
- View ticket prices in Indian Rupees (₹)
- Book tickets for vacation destinations
- Responsive design with modern UI
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── destinations.ts # Destination and booking routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Login.tsx # Login/Register component
│ │ ├── Dashboard.tsx # Main dashboard
│ │ └── BookingModal.tsx # Booking modal
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types
- The app will automatically set up the database on first run
- Navigate to the app URL to access the login page
- Register a new account or use demo credentials
- Browse and book travel destinations
- Backend: Hono.js with SQLite
- Frontend: React with TypeScript
- Styling: TailwindCSS
- Authentication: Session-based with cookies