Understanding the purpose of the ngrx router-store project as compared to only using the angular 2 router

The @ngrx/router-store exists so that it’s possible for the store to be the single source of truth for an application’s routing state. Without it, there would be application state – the current route – not represented in the store. That means time-travel debugging using the DevTools would not be possible, as there would be no … Read more