| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A modern web application starter template using Bun, React 19, TanStack Router, and TailwindCSS. No Vite required!
# Clone the repository
git clone https://github.com/mikndotdev/bunstack.git
cd bun-react-template
# Install dependencies
bun installStart the development server with hot reloading:
bun devBuild the application for production:
bun buildThis will generate a dist/ directory containing the production build. Set this as the build output directory in the static site hosting service of your choice.
Preview the production build locally:
bun preview├── src/ │ ├── assets/ # Static assets │ ├── components/ # Reusable components │ ├── routes/ # File-based routes │ └── index.tsx # Application entry point ├── build.ts # Build script (required as the Tailwind plugin cannot be accessed via the CLI) ├── package.json └── tsconfig.json
| Back | FazBrowse Home | New Git URL |