Create React App is not updated by its maintainers anymore. So this project can't be updated as well. I recommend to use Next Redux template which has all the same functionality plus new features.
Opinionated quickstart Create React App (CRA) template.
- Redux for state management
- Custom middleware and store enhancer examples
- Feature architecture
- Example tests for everything done with React Testing Library
- Eslint and stylelint
- Husky and lint-staged to observe code quality
- CSS-modules support
npx create-react-app %PROJECT_NAME% --template quickstart-redux
Or
yarn create react-app %PROJECT_NAME% --template quickstart-redux
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
See full documentation or demo