Job
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.
Viewing readonly version of main branch: v14View latest version
A full-stack application that allows users to post job opportunities and discuss them in a public chat room.
- Job Postings: Users can create and view job postings with title, company, description, and requirements
- Public Chat: Real-time chat room for discussing opportunities (requires name input before posting)
- Responsive Design: Works on desktop and mobile devices
βββ backend/
β βββ database/
β β βββ migrations.ts # Database schema setup
β β βββ queries.ts # Database query functions
β βββ index.ts # Main Hono server with API routes
βββ frontend/
β βββ components/
β β βββ App.tsx # Main React application
β β βββ JobBoard.tsx # Job posting component
β β βββ ChatRoom.tsx # Chat room component
β β βββ JobForm.tsx # Job creation form
β βββ index.html # Main HTML template
β βββ index.tsx # Frontend entry point
βββ shared/
βββ types.ts # Shared TypeScript types
GET /api/jobs- Get all job postingsPOST /api/jobs- Create a new job postingGET /api/messages- Get chat messagesPOST /api/messages- Send a chat message
- Backend: Hono (TypeScript API framework)
- Database: SQLite
- Frontend: React with TypeScript
- Styling: TailwindCSS