Examples of redux-app with Angular and React. Pick whatever view framework you like (same BI code used across frameworks)...
mkdir redux-app-examples
cd redux-app-examples
git init
git pull https://github.com/alonrbar/redux-app-examples
npm install
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