Requires Node >=20.x, excluding 21.x
Install Yarn: https://yarnpkg.com/lang/en/docs/install/
Clone and install dependencies:
$ git clone [email protected]:chuntley/react-boilerplate.git
$ cd react-boilerplate
$ yarn
To lift the dev server with hot module reloading.
$ yarn dev
The 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