Reputation: 61
Is it possible to run shiny app in debug mode. i.e: after I issue runApp to launch the (server.R and ui.R) I get the console's R prompt ">" back? Justification: Debug the application while it is running
Thank you Mjj
Upvotes: 1
Views: 1352
Reputation: 81
You can do this by setting a breakpoint in your server code. When the app hits this line, it will enter debug mode and you can use the R console.
Upvotes: 1