I find the browser()
function very helpful for debugging my Shiny app. However, when I want to do some major modifications to my code using existing elements from a temporary state of my app (created using browser()
) as input, I can't because they all disappear as soon as I finish running the app. Can I save all elements of this temporary state?
For example, if there are 20 data frames in my Environment produced by my Shiny app (which I can view thanks to browser()
and which will go away after the app is resumed), can I save all of them in some convenient way?