A modern, feature-rich boilerplate for building scalable and maintainable React applications.
- React: A JavaScript library for building user interfaces.
- TypeScript: A superset of JavaScript that adds static types.
- Rsbuild: A blazing-fast build tool for React applications.
- Emotion: A powerful CSS-in-JS library with great developer experience.
- Biome: Next-generation linter, formatter, and more for JavaScript and TypeScript.
- Prettier: Opinionated code formatter ensuring consistent style.
- Husky: Git hooks made easy for automated quality checks.
- Lint-staged: Run linters on git staged files to ensure code quality.
- SWC: Super-fast TypeScript/JavaScript compiler.
The easiest way to get started is by using this repository as a template:
- Click the "Use this template" button at the top of the repository page
- Select "Create a new repository"
- Fill in your repository details
- Click "Create repository"
- Clone your new repository to your local machine
- Follow the installation steps below
- Bun version 1.1.39 or higher
- Node.js 18.x or higher (optional, if not using Bun)
# Clone the repository
git clone https://github.com/your-username/react-boilerplate.git
# Navigate to the project directory
cd react-boilerplate
# Install dependencies
bun install
bun run dev
This will start the development server at http://localhost:3000.
bun run build
The build artifacts will be stored in the dist/
directory.
bun run dev
- Start development server and open in browserbun run build
- Build for productionbun run preview
- Preview production buildbun run check
- Run Biome checkerbun run format
- Format code with Prettier
react-boilerplate/
├── public/ # Static files
├── src/
│ ├── components/ # Reusable components
│ ├── hooks/ # Custom React hooks
│ ├── utils/ # Utility functions
│ ├── styles/ # Global styles
│ ├── main.tsx # Application entry point
│ └── App.tsx # Root component
├── rsbuild.config.ts # Rsbuild configuration
└── tsconfig.json # TypeScript configuration
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License.