Helpers for integrating Angular applications using angular-redux with redux-orm. Version 2.0.0 is the current stable release. It provides an observable-based query mechanism (selectData) to subscribe to redux-ORM queries directly in Angular components via the @select decorator. Alternative to manually wiring up redux-ORM sessions; requires redux-orm ^0.9.0 as peer dependency. Ships TypeScript types. Low maintenance cadence.
npm install redux-orm-angularNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configures ORM.angularConfig and uses selectData in an Angular component to subscribe to all Post entities.
Set ORM.angularConfig as shown in the README configuration section.
Ensure redux-orm version is ^0.9.0 in package.json.
Use modern Angular state management like @ngrx/store with redux-orm directly.
Use only with angular-redux/store patterns.
Ensure stateKey equals the key in combineReducers used for the redux-orm reducer.
Define ORM.angularConfig with instance and stateKey as per the configuration section.
Set ORM.angularConfig = { instance: orm, stateKey: 'your_key' }.Register the model on the orm instance: orm.register(ModelName).