https://github.com/kulla/rsbuild-react-starter-template
https://github.com/kulla/rsbuild-react-starter-template
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kulla/rsbuild-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: 2025-08-28T16:52:56.000Z (9 months ago)
- Last Synced: 2025-08-28T22:47:04.473Z (9 months ago)
- Language: TypeScript
- Homepage: https://kulla.github.io/rsbuild-react-starter-template/
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rsbuild template repository
This is a template repository for `rsbuild` with `React` and `TypeScript`. 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 `assetPrefix` in `rsbuild.config.ts` to your repository name
4. Update `title` in `rsbuild.config.ts` to your project name
5. Install the dependencies via `bun install`
6. Update or remove `.github/workflows/sync-to-gitlab.yml` if you want to sync to GitLab
7. 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
```