My personal go-to stack for frontend web development 🫡
- Vite + React19 + TypeScript
- BiomeJS as linter and formatter
- TanStack Router for type-safe, file-based routing
- Zustand for client-side state management
- TailwindCSS and shadcn/ui for user interface
- React Compiler
- react-helmet-async for document head manager
- lefthook for Git hooks manager
- Bun - All-in-one JavaScript runtime & toolkit
If you don't have Bun installed, you can install it by following the instructions on the official Bun website.
- Clone the repository:
git clone https://github.com/kyziq/kystack cd kystack - Install dependencies:
bun install
bun dev: Starts the development server with hot-reloadingbun build: Builds the project for productionbun preview: Serves the production build locallybun check: Checks the code using Biome