An open API service indexing awesome lists of open source software.

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

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
```