Public
Like
untitled-6440
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://Ephie98--44f7c5f23fa211f08ad376b3cceeab13.web.val.run
A full-stack application to track and manage job postings.
- Add new job postings with company, position, location, and status
- View all job postings in a clean interface
- Update job application status
- Filter and search through postings
- Responsive design with TailwindCSS
βββ backend/
β βββ database/
β β βββ migrations.ts # Database schema setup
β β βββ queries.ts # Database query functions
β βββ routes/
β β βββ jobs.ts # Job-related API endpoints
β βββ index.ts # Main Hono server
βββ frontend/
β βββ components/
β β βββ App.tsx # Main React component
β β βββ JobForm.tsx # Form to add new jobs
β β βββ JobList.tsx # Display job listings
β βββ index.html # Main HTML template
β βββ index.tsx # Frontend entry point
βββ shared/
βββ types.ts # Shared TypeScript types
GET /api/jobs
- Get all job postingsPOST /api/jobs
- Create a new job postingPUT /api/jobs/:id
- Update a job postingDELETE /api/jobs/:id
- Delete a job posting
This is a Val Town project. The backend runs on Hono with SQLite for data storage, and the frontend uses React with TailwindCSS for styling.