Reviews
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 full-stack application for sharing and browsing company reviews.
- Submit company reviews with ratings and detailed feedback
- Browse all company reviews
- Search and filter reviews by company name
- Rate companies on multiple criteria (work-life balance, compensation, culture, etc.)
- Anonymous review submission
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ └── routes/
│ └── reviews.ts # Review API endpoints
│ ├── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── ReviewForm.tsx # Form for submitting reviews
│ │ ├── ReviewList.tsx # Display list of reviews
│ │ └── ReviewCard.tsx # Individual review display
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
- Backend: Hono (TypeScript API framework)
- Database: SQLite
- Frontend: React with TypeScript
- Styling: TailwindCSS
- Deployment: Val Town
GET /api/reviews- Get all reviews with optional search/filterPOST /api/reviews- Submit a new reviewGET /api/companies- Get list of companies with review counts
The app is automatically deployed on Val Town. Visit the main URL to start browsing and submitting company reviews.