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: v6View 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)
- 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