redux-app-examples
Examples of redux-app with Angular, Aurelia 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 | Aurelia | React |
---|
Counters - a basic example | Angular | Aurelia | - |
Counters with Identity - using the withId decorator, a "mini ORM" feature | Angular | Aurelia | - |
Async Dogs - using the sequence decorator, an async pattern that does not require thunks | Angular | Aurelia | - |
Todo List - your familiar todo list example, this time with redux-app | Angular | Aurelia | React (Experimental) |
Gladiators - a real world example | Angular | Aurelia | - |
Change Log