Reputation: 21280
I am looking for a Windows Perl IDE with debugger like Komodo but free.
I have seen Eclipse+EPIC but I don't want to install Eclipse here.
Padre doesn't have debugger built in.
Upvotes: 5
Views: 3717
Reputation: 132832
Komodo Edit is free. You can also check out Visual Studio, which in 2015 added Perl support.
Perl already comes with the best debuggers in the world: print
and Test::More
.
However, people keep asking this question, so we've listed all the ones we know about in perlfaq3.
Upvotes: 11
Reputation: 5072
There's an early version of a debugger plugin for Padre (check CPAN). I don't think it's ready for prime time, but if you were willing to donate some of your own time to improve it...
Upvotes: 2
Reputation: 4700
For Emacs there's the Perl Development Environment. Just use -d/Ctrl-c Ctrl-d for the debugger. Emacs runs on Windows, by the way.
Upvotes: 2
Reputation: 1037
Why use an IDE when you can do pretty much everything with the good ol' perl debugger?
Upvotes: 0