Opinionated quickstart Create React App Template based on presets and configurations used at Agilit-e.
npx create-react-app %PROJECT_NAME% --template agilite
Or
yarn create react-app %PROJECT_NAME% --template agilite
npx
command installs most recent stable version of CRA from npm. --template
parameter points to this template, note that cra-template-
prefix is omitted.
Then
cd %PROJECT_NAME%
yarn start
Or
cd %PROJECT_NAME%
npm start