Fadwa_JobBoard_ChatApp
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: v12View latest version
A simple web application where users can post job opportunities and discuss them in a public chat room.
- Job Board: Post job opportunities with title, description, company, and location
- Public Chat: Real-time chat room for networking and discussions
- No Authentication: Simple name/nickname field for posts and messages
- Mobile-Friendly: Responsive design using TailwindCSS
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting endpoints
│ │ └── chat.ts # Chat message endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobBoard.tsx # Job posting and listing
│ │ └── ChatRoom.tsx # Chat interface
│ ├── 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 with TypeScript
- Styling: TailwindCSS
- Platform: Val Town
GET /api/jobs- Get all job postsPOST /api/jobs- Create a new job postGET /api/chat- Get chat messagesPOST /api/chat- Send a chat message
The app is automatically deployed on Val Town. Visit the HTTP endpoint to use the application.