August 2017
Beginner
374 pages
10h 41m
English
Although manually connecting Angular to Redux works, it is much easier and cleaner to do so using ng-redux.
npm install --save ng-redux
import ngRedux from 'ng-redux'
import { createStore } from 'redux'
let store = createStore(appReducer)const unsubscribe = store.subscribe(() => { console.log('state changed:', store.getState())})
Read now
Unlock full access