This project was created with Better-T-Stack, a modern TypeScript stack that combines , Hono, ORPC, and more.
- TypeScript - For type safety and improved developer experience
- TailwindCSS - Utility-first CSS for rapid UI development
- shadcn/ui - Reusable UI components
- Hono - Lightweight, performant server framework
- oRPC - End-to-end type-safe APIs with OpenAPI integration
- Bun - Runtime environment
- Biome - Linting and formatting
- Starlight - Documentation site with Astro
First, install the dependencies:
bun installThen, run the development server:
bun devThe API is running at http://localhost:3000.
link-extractor/
├── apps/
│ ├── docs/ # Documentation site (Astro Starlight)
│ └── server/ # Backend API (Hono, ORPC)
bun dev: Start all applications in development modebun build: Build all applicationsbun dev:web: Start only the web applicationbun dev:server: Start only the serverbun check-types: Check TypeScript types across all appsbun check: Run Biome formatting and lintingcd apps/docs && bun dev: Start documentation sitecd apps/docs && bun build: Build documentation site