morbo and hypnotoad are perl programs, so you can run them with the -d switch.
perl -d $(which morbo) myMojoApp.pl
Probably the easiest way is to sprinkle a bunch of $DB::single = 1 statements around your application where you want your starting breakpoints to start c as the first debugger command. When you run a request that hits the breakpoint, you will receive a debugger prompt in the terminal that launched morbo .
hypnotoad will be more difficult to use with the debugger, since it quickly closes all standard file descriptors, calls fork several times, and becomes a daemon.
mob
source share