Public
Like
Jobposting
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://faithyz--a1fa76e43fbd11f096f176b3cceeab13.web.val.run
A platform where users can view job postings and chat about them in real-time.
- View job postings
- Real-time chat for each job posting
- Simple, clean interface
- No authentication required (anonymous chat)
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting endpoints
│ │ └── chat.ts # Chat endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── JobList.tsx # Job listings
│ │ ├── JobDetail.tsx # Individual job view
│ │ └── Chat.tsx # Chat component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
- Visit the homepage to see all job postings
- Click on a job to view details and join the chat
- Chat messages are stored and displayed in real-time
- No registration required - just start chatting!