ngRx

Redux = a design pattern that keeps all the application data in a single Javascript object

ngRX = data/state management framework for Angular that uses Redux pattern implemented using RxJS library

Visualize Redux as below,

Single JS Object => DB => Store To change Data in the we send query, for Store => send or dispatch 'Action'

Reducer => map of Actions that maps which Action does what to the data

Last updated