Skip to content

kulla/react-starter-template

Repository files navigation

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:

bun dev

Build the app for production:

bun run build

Preview the production build locally:

bun preview

Maintenance

Update dependencies:

bun update

Contributors