Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: ExtUtils::Installed doesn't list all modules

by jacques (Priest)
on Sep 24, 2006 at 19:04 UTC ( [id://574616]=note: print w/replies, xml ) Need Help??


in reply to ExtUtils::Installed doesn't list all modules

You can use my module: HTML::Perlinfo::Modules. The latest version was just released yesterday (unfortunately there are some POD errors I need to fix asap.)

If you want to see if a module is installed, you can simply do:

use HTML::Perlinfo::Modules; my $m = HTML::Perlinfo::Modules->new(); my $module = $m->print_modules(show_only=>qr/Rince::Wind/); if ($module) { print "Module Rince::Wind is installed!"; } else { print "No Rince::Wind module found"; }
If you want to see all of the modules installed, you simply say:
$m->print_modules;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://574616]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-19 12:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found