Job Board with Chat

A simple application that allows users to:

  • Post job opportunities
  • Browse existing job postings
  • Participate in a public chat room to discuss opportunities

Features

  • Job Postings: Create, view, and delete job listings
  • Public Chat: Real-time discussion about job opportunities
  • Simple UI: Clean interface with Tailwind CSS

Project Structure

  • /backend: API endpoints and database operations
    • /database: SQLite database setup and queries
    • /routes: API route handlers
  • /frontend: User interface
    • /components: Reusable UI components
    • index.html: Main entry point
  • /shared: Shared types and utilities

Technologies

  • Backend: Hono (TypeScript)
  • Database: SQLite
  • Frontend: HTML, JavaScript, Tailwind CSS
  • Real-time updates: Polling

API Endpoints

  • GET /api/jobs: Get all job postings
  • POST /api/jobs: Create a new job posting
  • DELETE /api/jobs/:id: Delete a job posting
  • GET /api/chat: Get chat messages
  • POST /api/chat: Post a new chat message