Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 822 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 822 Bytes

angular-flux-store

AngularJS 1.x Flux Store implementation - Javascript EC5

see the home page

Provides an Angular Service with Flux Store pattern.

How it works

  • The service fStore allows components and controllers to subscribe listeners for each data update
  • All listeners work with isolated data from store. One data doesn't interfer with others controls
  • the service fStore provides an update() method, with will propagate the data for all listeners

Main purpose

  • Allows the component based development in Angular 1.x
  • Allows to use Flux Store pattern with Javascript EC5
  • Cares the data storage and updates, without overread angular watchers: the data only is replicated when the update() method is invoked.

See the samples on home page