Option 1
You can attach the repository to windowwhen you are in dev mode, and then you can access if from the console.
if(env === 'dev') {
window.store = store;
}
Now you can access it directly from the console:
store.getState()
Option 2 (in chrome)
- After creating the store
console.log(store). - In the console, right-click the vault and select
Store as global variable. - You will get a new variable by name
temp1(or tempX if you created others). - Now you can use
temp1.getState().
( ).