vote up 8 vote down star
7

What Perl module would you be lost without?

flag
show 4 more comments

39 Answers

1 2 next
vote up 0 vote down

I agree with the strict comments, but i'd also be lost without CGI::Carp qw(fatalsToBrowser warningsToBrowser). It's tough to debug a script when your only hint is "Internal Server Error".

link|flag
vote up 0 vote down

Lightweight, reliable, fast: classes - conventional Perl 5 classes

link|flag
vote up 0 vote down

I would really not be able to function without the Win32::ODBC, I have so much old legacy code using this. I know DBI is better, but this module is used every second.

link|flag
vote up 0 vote down
  • CGI::Application
  • DBI
  • AnyEvent (I'm definitely a POE skeptic)
  • Template Toolkit
link|flag
vote up 5 vote down

I tend to use Path::Class a lot. It transforms something like:

 use File::Spec;

 my $filename = File::Spec->catfile(qw/some file/);
 open my $fh, '<', $filename or die "Failed to open $filename: $!";
 say do { local $/; <$fh> };

Into:

 use Path::Class;
 say scalar file(qw/some file/)->slurp;

If you work with the filesystem and do this all manually, Path::Class will make you very happy.

link|flag
show 1 more comment
vote up 0 vote down

CGI. I rarely write a perl script without it. But that's just the nature of most of my perl scripts.

link|flag
vote up 1 vote down

While this module is by no means a universal cure-all, over the past two years if Nagios::Plugin had not existed I would assuredly have had to implement it myself, and probably not as well.

link|flag
vote up 1 vote down
  • Carp
  • LWP::*
  • DBI
  • Data::Dumper
  • forks
link|flag
vote up 1 vote down

Everything I write has tests, so Test::Builder without which most of the other testing modules would not exist.

$self->horn->toot;
link|flag
vote up 1 vote down

IO:All - It makes everything easy and uniform (Files, DBs, Sockets, etc)

link|flag
vote up 3 vote down

Along with many listed here, for general coding I would also include:

For package testing, I would also not do without:

link|flag
vote up 2 vote down

DateTime and family, although there are a number of implementation decisions DateTime made that I think are poor, and I prefer some of the interface of Time::Piece + Time::Seconds (formerly Time::Object; I liked the previous name better, too).

link|flag
vote up 3 vote down

I do a lot of date arithmetic at $work, and my first (and only) port of call is Date::Calc. Yes, the DateTime project is the way to go these days, but since I've committed most of the API to memory, and the problem domain can be addressed in a purely procedural manner, it seems to work out just fine.

Getopt::Long is another module who's API I know off by heart. For command-line argument parsing, it's hard to beat.

Mail::Sendmail is my favourite e-mail sending module for batch processes to phone home when things go wrong.

I use Net::LDAP for hacking on LDAP directories, although I hate the interface. That said, I've been using it for years and I cannot think of an interface that would be an improvement. The problem domain is complex.

link|flag
vote up 5 vote down

'strict' and 'warnings' have probably saved me more head-scratching time than anything else.

Honorable mentions (in no particular order) to DBI, XML::LibXML, Moose, HTML::Parser, Path::Class, Log::Log4perl, Getopt::Long, File::Find::Rule, DateTime, Test::More, WWW::Mechanize and Data::Dumper. I can't even imagine how how bad my code would be without these (and many others), let alone how much longer it would have taken to write.

link|flag
vote up 3 vote down

DBI for sure...that one should just be a given. Outside of that, Data::Dumper

link|flag
vote up 10 vote down

There are many modules whose absence would make my Perl programmer life quite a lot less comfortable. If I were to enumerate those, the result would be virtually identical to rjray’s list.

However, there is only one single module that I use in every program and without which I truly would be lost: strict. Seriously. It has happened to me in some cases, like when I started writing code on the command line and then put into a file to evolve it into a proper program, or when I got involved with someone else’s code, that I missed that crucial use strict; line at the top of the file. Every time without fail, I would make a stupid typo that would cost me hours of scratching my head over apparent logic bugs, that in the end turned out to be nothing but a trivial spelling mistake in some identifier.

I think it’s easy to forget just how much time and mental effort strict saves on an ongoing basis, simply because as conscientious programmers we’re so incredibly used to it. (Of course, ultimately that is just as it should be.)

link|flag
vote up 6 vote down

Getopt::Long

I'd like to say DBI and DBD::Oracle, but they're such a pain to get working (under cygwyn) that they're almost non-functional. That's a special feature of cygwin I guess, 'cause ActiveState works peachy.

link|flag
vote up 6 vote down

For modules in the core of Perl itself:

  • Data::Dumper - It's a debugging tool and a serialization format
  • IO::Handle (and thus IO::File, IO::Socket, etc.) - OO interface to IO, and transparent treatment of files, sockets, etc. without all that "\*" noise
  • AutoLoader - Don't load all 20 subroutines in your library if you only need 1 of them

From CPAN:

  • LWP - 80% or more of what I do is web-related
  • XML::LibXML - ...and about 80% is XML-related, with a not-insignificant overlap
  • Net::Twitter - My Twitter CPAN-bot needs this, and I don't have the free time to write it myself, so...
  • DBD::SQLite - (and by implication, DBI of course) A single-file, self-contained RDBMS with transactions, triggers, et al is full of win

Of course, I'd argue that probably the most critical/useful is the CPAN module itself...

link|flag
vote up 3 vote down

Damian Conway's Smart::Comments, and I use YAML for a bit of modeling (see yaml.org, specifically the fast YAML::Syck.

In addition, I have my own module (not on CPAN) Test::Setup which is just an easy importer for Test::More and Benchmark and Perl6::Say (on 5.8).

Oh, and not to mention a bunch of core modules: Scalar::Util, List::Util (and List::MoreUtils), Symbol, and of course Carp.

link|flag
vote up 5 vote down
  • Perl::Critic, to avoid bad coding practices within the Perl idiom.
  • Perl::Tidy, to keep my code consistently formatted.
  • Getopt::Euclid, to keep my --help documentation consistent with my POD documentation.
  • CPAN and CPANPLUS, to keep my perl installation current.
  • YAML and Config::Simple, to standardize configuration files.
link|flag
vote up 5 vote down

Can't live without Text::CSV_XS for parsing and generating line-oriented structured data.

link|flag
vote up 2 vote down

I would be lost without many Perl modules. Test::More, Cwd.pm, Template-Toolkit, String::ShellQuote, DBI, CGI.pm, XML::RSS/XML::Feed, Module::Build, Term::ANSIColor, Exception::CLass, Exporter, Class::Accessor, XML::LibXML, Getopt::Long (still didn't take the Moose path), CPANPLUS::Dist::Mdv, File::Path, HTML::Parser and friends and many of my own.

link|flag
vote up 3 vote down

I'm dabbling a lot in XML, so I'd have to say XML::LibXML. There are other excellent XML modules out there (XML::Twig and the pure-Perl-when-all-else-fails XML::XPath), but XML::LibXML is the primary one I keep using over and over again.

link|flag
vote up 4 vote down

First one that came to mind is DBI, but then I remembered that I mostly use DBIx::Class these days and I could live with either of them. Then I thought of Data::Dumper but I really like Data::Dump better.

Finally, it hit me: this is a trick question. With the wealth of CPAN modules and TMTOWTDI, there should be no module you can't live without.

... and to answer the question about which module I like best, I'd say Catalyst, because I've learned more from it than from any other Perl module or framework.

link|flag
vote up 4 vote down

FileHandle. Lots of Perl scripts I write deal with files and although I could do without this module, it's neater to pass around files as objects.

link|flag
1  
I just use lexical filehandles (open my $out '>', 'somewhere'). It seems to work ok. – dland Oct 4 '08 at 8:06
vote up 2 vote down

DBI and Data::Dumper

Everything I do is either driven by a database or ends up in a database, so DBI is a must.

Data::Dumper is just magic for debugging.

link|flag
vote up 2 vote down

DB_File. I like most of those answers, but I use DB_File the most.

link|flag
vote up 11 vote down

Moose. Gets rid of the cruft involved in implementing Perl OO, and allows me to just get the hell on and code in a manner my peers can follow and maintain.

link|flag
show 1 more comment
vote up 8 vote down

CPAN.pm -- because it's my gateway to all the great libraries that people have already written to make my job easier.

link|flag
show 2 more comments
vote up 2 vote down

It's probably DBI. I use LWP heavily but I'm guessing that I could more easily replace it than DBI.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.