Chapter 11. Perl Modules

There is a lot more to Perl than what we’re able to show you in this book, and there are a lot of people doing a lot of interesting things with Perl. If there is a problem to solve, somebody has probably already solved it and made their solution available on the Comprehensive Perl Archive Network (CPAN), which is a worldwide collection of servers and mirrors containing thousands of modules of reusable Perl code. Indeed, most of Perl 5 is in the modules since Larry designed it as an extensible language.

We’re not going to teach you how to write modules here: you’ll have to get that from the Alpaca book. In this chapter, we’ll show you how to use modules that already exist. The idea is to get you started with CPAN rather than give you a survey on modules.

Finding Modules

Modules come in two types: those that come with Perl that you should have available to you, and those that you can get from CPAN to install yourself. Unless we say otherwise, the modules that we show come with Perl.[286]

To find modules that don’t come with Perl, start at either CPAN Search, (http://search.cpan.org). You can browse through the categories or search directly. You can read the module documentation before you download the entire package. You can also browse the distribution and have a peek at the files without the bother of installing the modules. There are many other tools for inspecting a distribution too.

Before you go looking for a module, you should check if it is already installed. ...

Get Learning Perl, 6th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.