MJJ
MJJ

Reputation: 61

Run R Shiny app in debug mode

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

Answers (1)

Drinkwater32
Drinkwater32

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

Related Questions