angular-store
  • @angular/store
  • State
  • Reducer
  • Action
  • Dipatch
  • Selector
  • MISCELLANEOUS
    • Methods
Powered by GitBook
On this page
  • Installation
  • Example

@angular/store

@angular/store state management library documentation.

NextState

Last updated 6 years ago

Installation

npm install angular-store --save

Example

You can find example

If you have come this far, I believe you know what is State management in angular application. There are more than couple of state management libraries already available for Angular and they are great. Then you might be thinking why new library!. When I started to implement them in my own application, I hated how much code one should write to create state and it's other parts such as Selectors, Actions and etc..

This library focuses on reducing boilerplate code yet, covers major features from other libraries.

There are couple of things we will learn before we going to see how to implement it.

  1. State

  2. Selector

  3. Action

  4. Reducer

here