Requires Node 22.x, 24.x, 25.x, or 26.x
Install pnpm (via Corepack, bundled with Node): https://pnpm.io/installation
$ corepack enable pnpmClone and install dependencies:
$ git clone git@github.com:chuntley/react-boilerplate.git
$ cd react-boilerplate
$ pnpm installTo lift the dev server with hot module reloading.
$ pnpm devThe output of the command will list the URL to the dev server.
To bundle the React application
$ pnpm dist# run all tests including coverage report
$ pnpm test
# run tests in watch mode
$ pnpm test:watch
# run single test without coverage or linting
$ pnpm test:lite$ pnpm lint$ pnpm format