Finding the dcc.Store Data as an end-user (web browser DOM inspection)

Good question! The data is stored in memory in the browser. It’s not easily findable, but accessible by running store.getState() in the Javascript console. The data is also accessible if the user opens the browser’s devtools and inspects the network console - that’s where you can inspect the data transfer between the server and the browser including all of the inputs, outputs, and state of callbacks.

2 Likes