We have a legacy angular2+ project (I know angular2+ is not that old) where we use a global object to store state. We are using ngrx in new code , but still need to access that monstrous global object. As other part of code is still updating that.
I'm thinking to replace that global object with recursive proxies so that all updates can be forwarded to ngrx store
I'm thinking to replace that global object with recursive proxies so that all updates can be forwarded to ngrx store
And slowly replace all reads with ngrx selectors