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 milliseconds.
A simple application that allows users to:
- Post job opportunities
- Browse existing job postings
- Participate in a public chat room to discuss opportunities
- Job Postings: Create, view, and delete job listings
- Public Chat: Real-time discussion about job opportunities
- Simple UI: Clean interface with Tailwind CSS
/backend
: API endpoints and database operations/database
: SQLite database setup and queries/routes
: API route handlers
/frontend
: User interface/components
: Reusable UI componentsindex.html
: Main entry point
/shared
: Shared types and utilities
- Backend: Hono (TypeScript)
- Database: SQLite
- Frontend: HTML, JavaScript, Tailwind CSS
- Real-time updates: Polling
GET /api/jobs
: Get all job postingsPOST /api/jobs
: Create a new job postingDELETE /api/jobs/:id
: Delete a job postingGET /api/chat
: Get chat messagesPOST /api/chat
: Post a new chat message