Requires Node 20.x, 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
$ yarnTo lift the dev server with hot module reloading.
$ yarn devThe output of the command will list the URL to the dev server.
To bundle the React application
$ yarn dist# 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$ yarn lint