DEV Community

Discussion on: NgRx — Best Practices for Enterprise Angular Applications

 
dlucazeau profile image
Daniel Lucazeau

I will go from one menu / item to another directly with the router. And the first step after that will be to activate the feature store. It works well.
As we must be able to install this on-site application with all or only a few features, this architecture will be suitable.

I will study the lazzy loading of the stores.

Your tutorial was a good introduction to solve my problem.

Thread Thread
 
wesgrimes profile image
Wes

I plan on updating my article soon to accommodate for lazy loading feature stores, I will also address dispatching actions between feature stores

Thread Thread
 
dlucazeau profile image
Daniel Lucazeau • Edited

I will monitor and read the news carefully.

Lazy loading is easy, we have just to move the featureModules from AppModule in their corresponding module.
In DevRedux we can see a new line with 'update-reducers'

Thread Thread
 
wesgrimes profile image
Wes

Agreed.