https://github.com/kulla/react-starter-template
Template repository for a single page application with rsbuild and react
https://github.com/kulla/react-starter-template
biomejs bun github-pages react rsbuild single-page-applications starter-template template
Last synced: 6 days ago
JSON representation
Template repository for a single page application with rsbuild and react
- Host: GitHub
- URL: https://github.com/kulla/react-starter-template
- Owner: kulla
- License: apache-2.0
- Created: 2025-03-21T18:56:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-06-08T05:34:16.000Z (13 days ago)
- Last Synced: 2026-06-08T12:37:58.841Z (12 days ago)
- Topics: biomejs, bun, github-pages, react, rsbuild, single-page-applications, starter-template, template
- Language: Shell
- Homepage: https://kulla.github.io/react-starter-template/
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React SPA starter template
This is a starter template for a React single-page application built with `TypeScript` and Bun. It uses `bun` instead of Node.js and `biome` instead of `prettier / eslint` for better performance.
## Start a new project from this template
1. Copy / Fork / Clone the repository
2. Change the license in the `LICENSE` file and in the `package.json` file
3. Update `src/index.html` title to your project name
4. Install the dependencies via `bun install`
5. Update or remove `.github/workflows/sync-to-gitlab.yml` if you want to sync to GitLab
6. Update this `README.md` file
## Setup
1. Clone the repository
2. Install the dependencies via `bun install`
## Get started
Start the dev server:
```bash
bun dev
```
Build the app for production:
```bash
bun run build
```
Preview the production build locally:
```bash
bun preview
```
## Maintenance
Update dependencies:
```bash
bun update
```