redux-app-examples
v2.0.0
Published
Examples of redux-app with Angular and React.
Downloads
22
Maintainers
Readme
redux-app-examples
Examples of redux-app with Angular and React. Pick whatever view framework you like (same BI code used across frameworks)...
Installtion
mkdir redux-app-examples
cd redux-app-examples
git init
git pull https://github.com/alonrbar/redux-app-examples
npm install
Run the examples
After installation run npm start
and open localhost:3000
on your browser.
TypeError: Cannot read property 'used' of null - If you get this error when calling npm start
run the following:
git checkout -- package-lock.json
npm prune
npm start
Examples Source
| Example | Angular | React |
|---------|---------|-------|
| Counters - a basic example | | |
| Counters with Identity - using the withId
decorator, a "mini ORM" feature | | |
| Async Dogs - using the sequence
decorator, an async pattern that does not require thunks | | |
| Todo List - your familiar todo list example, this time with redux-app | | |
| Gladiators - a real world example | | |