cra-template-no-redux
v0.1.0
Published
Create React App template with Redux features done using React library tools. Features: shared state, dispatch, middlewares, state enhancers and devtools support
Downloads
1
Maintainers
Readme
No Redux Create React App template
Create React App template with Redux features done using React library tools. I was not happy about recent version of official react-redux
, so decided to make my own.
Usage
npx create-react-app %PROJECT_NAME% --template no-redux
Or
yarn create react-app %PROJECT_NAME% --template no-redux
Then
cd %PROJECT_NAME%
yarn start
Features
- Unidirectional state management with
React.Context
anduseReducer
. - Store middleware (thunks, Promises etc) support.
- Store enhancers support.
- Redux devtools support.
- Feature architecture.