https://github.com/morewings/cra-template-no-redux
Create React App template with Redux features done using React library tools
https://github.com/morewings/cra-template-no-redux
Last synced: about 1 month ago
JSON representation
Create React App template with Redux features done using React library tools
- Host: GitHub
- URL: https://github.com/morewings/cra-template-no-redux
- Owner: morewings
- License: mit
- Created: 2022-05-29T21:42:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T04:02:01.000Z (over 3 years ago)
- Last Synced: 2025-03-06T22:33:53.286Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.94 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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
```shell script
npx create-react-app %PROJECT_NAME% --template no-redux
```
Or
```shell script
yarn create react-app %PROJECT_NAME% --template no-redux
```
Then
```shell script
cd %PROJECT_NAME%
yarn start
```
## Features
- Unidirectional state management with `React.Context` and `useReducer`.
- Store middleware (thunks, Promises etc) support.
- Store enhancers support.
- Redux devtools support.
- Feature architecture.