Getting Started with Redux-ORM
Redux-ORM helps you manage relational data in Redux.
Installation
The library is available as a package on NPM for use with a module bundler or in a Node application:
npm install redux-orm
Polyfill
Redux-ORM uses some ES6+ features, such as Set
and Symbol
.
So if you are dealing with a pre-ES6 environment, you should load a polyfill like babel-polyfill
before using Redux-ORM.
Details
For more details, see the Installation page. Or skip ahead to the Quick Start.