Night Walker
Night Walker

Reputation: 21280

What's a free Perl IDE for Windows?

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

Answers (6)

brian d foy
brian d foy

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

dan
dan

Reputation: 905

See nbperl, a Perl plugin to netbeans.

Upvotes: 0

tsee
tsee

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

Pedro Silva
Pedro Silva

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

Kiffin
Kiffin

Reputation: 1037

Why use an IDE when you can do pretty much everything with the good ol' perl debugger?

Upvotes: 0

sateesh
sateesh

Reputation: 28683

I think ptkdb might be of help to you

Upvotes: 9

Related Questions