Public
Like
Job-posting
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.
index.ts
https://Oluremite--8c2b3292348f11f0a4d39e149126039e.web.val.run
A simple application that allows users to:
- Post job opportunities
- View all job postings
- Participate in a public chat room to discuss opportunities
- Create and browse job postings
- Real-time chat room for discussing opportunities
- Simple username-based identification
- Mobile-friendly interface
- Backend: Hono (TypeScript)
- Database: SQLite
- Frontend: HTML, TypeScript, Tailwind CSS
- Authentication: Simple username-based system
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── jobs.ts # Job posting endpoints
│ │ ├── chat.ts # Chat endpoints
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobForm.tsx # Job posting form
│ │ ├── JobList.tsx # Job listings
│ │ └── ChatRoom.tsx # Chat room component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types and interfaces
- Enter a username to identify yourself
- Browse existing job postings
- Create new job postings using the form
- Chat with others about opportunities in the public chat room