2.0.0 • Published 6 years ago

redux-app-examples v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

redux-app-examples

Examples of redux-app with Angular and React. Pick whatever view framework you like (same BI code used across frameworks)...

npm version npm license dependencies dependencies

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

ExampleAngularReact
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

Change Log