untitled-5154
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.
index.ts
https://Heshuwell--cf9969e03f8411f08cbc76b3cceeab13.web.val.run
A modern job posting website where employers can post jobs and job seekers can apply and chat with employers.
- 📝 Job posting and management
- 👥 User authentication and profiles
- 💬 Real-time chat between employers and job seekers
- 🔍 Job search and filtering
- 📱 Responsive design
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── jobs.ts # Job CRUD operations
│ │ ├── chat.ts # Chat functionality
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── JobList.tsx # Job listings
│ │ ├── JobForm.tsx # Job posting form
│ │ ├── Chat.tsx # Chat interface
│ │ └── Auth.tsx # Login/register
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
- Backend: Hono (TypeScript API framework)
- Frontend: React with TypeScript
- Database: SQLite
- Styling: TailwindCSS
- Real-time: Server-Sent Events for chat
- The backend runs on
/backend/index.ts
as an HTTP val - Visit the root URL to access the job board
- Register as either an employer or job seeker
- Employers can post jobs, job seekers can apply and chat