Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 806 Bytes

File metadata and controls

54 lines (35 loc) · 806 Bytes

React Boilerplate

Build

Installation

Requires Node 22.x, 24.x, or 25.x

Install Yarn: https://yarnpkg.com/lang/en/docs/install/

Clone and install dependencies:

$ git clone git@github.com:chuntley/react-boilerplate.git
$ cd react-boilerplate
$ yarn

Development

To lift the dev server with hot module reloading.

$ yarn dev

The output of the command will list the URL to the dev server.

Build

To bundle the React application

$ yarn dist

Testing

# run all tests including coverage report and linting
$ yarn test

# run tests in watch mode
$ yarn test:watch

# run single test without coverage or linting
$ yarn test:lite

Linting

$ yarn lint