ngrx-store-localstorage
ngrx-store-localstorage copied to clipboard
Simple syncing between @ngrx store and local storage
Hi all, I have a problem with syncing the store in LocalStorage. First of all I have to mention that it is not a standard client-side Angular application. My app...
As mentioned by @bdspen in https://github.com/btroncone/ngrx-store-localstorage/issues/144#issuecomment-611558226. Opening a new issue specifically for the lack of config option examples. >If I might add, as a new user of the library I...
Is it possible to create several states in localStorage that are identified by a unique key? For example 
When rehydrating store in lazy load feature, changes the references of all store object and this mean that *all the subscriptions are fired without changes in the store*. This subscriptions...
I'm trying to use this library to sync parts of my store to sessionStorage. The project uses SSR so we need to check for availability of storage. Unfortunately, it seems...
This PR adds encryption/decryption to localstorage keys if the encrypt and decrypt functions were provided. if this PR is acceptable can anyone guide me on how to debug jasmine tests...
Fixes https://github.com/btroncone/ngrx-store-localstorage/issues/128
How do I save only the grandchild state in config? `{keys: [{parent: {child: ['grandchild']}}]}` doesn't seem to work ``` { parent: { child: { grandchild: { ... } } }...
Please provide guidance on how to setup all keys be stored by default. Alternately, let us know what criteria you use to decide if a key should be kept. It...
fix issue overwriting values with old values from rehydrated state, when reducers are updated. Not sure if the test is needed, because update action is deleted.