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 full-stack application for posting job opportunities and discussing them in a public chat room.
- 📝 Post job listings with title, company, description, and requirements
- 💬 Public chat room for discussing opportunities
- 🔍 Browse and search job postings
- 📱 Responsive design with TailwindCSS
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting API routes
│ │ └── chat.ts # Chat API routes
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobBoard.tsx # Job listings component
│ │ ├── JobForm.tsx # Job posting form
│ │ └── ChatRoom.tsx # Chat room component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
- Backend: Hono (TypeScript API framework)
- Database: SQLite
- Frontend: React 18.2.0 with TypeScript
- Styling: TailwindCSS
- Real-time: Polling for chat updates
GET /api/jobs- Get all job postingsPOST /api/jobs- Create a new job postingGET /api/jobs/:id- Get a specific job posting
GET /api/chat/messages- Get chat messagesPOST /api/chat/messages- Send a chat message
The app is automatically deployed on Val Town. Visit the HTTP endpoint to start using the application.