Acme-CPANModules-ModuleAutoinstallers

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    This document describes version 0.004 of
    Acme::CPANModules::ModuleAutoinstallers (from Perl distribution
    Acme-CPANModules-ModuleAutoinstallers), released on 2024-08-29.

DESCRIPTION
    These "module autoinstallers" modules can automatically install missing
    module during run-time using one of installers (usually "cpanm" a.k.a.
    App::cpanminus). Convenient when running a Perl script (that comes
    without a proper distribution or "cpanfile") that uses several modules
    which you might not have. The alternative to lib::xi is the "trial and
    error" method: repeatedly run the Perl script to see which module it
    tries and fails to load.

    They work by installing a hook in @INC. Read more about require hooks in
    "perlfunc" under the "require" function.

ACME::CPANMODULES ENTRIES
    lazy
    lib::xi
    Module::AutoINC
    Require::Hook::More

lib/Acme/CPANModules/ModuleAutoinstallers.pm  view on Meta::CPAN

our $VERSION = '0.004'; # VERSION

our $LIST = {
    summary => 'List of modules that autoinstalls other modules during run-time',
    description => <<'MARKDOWN',

These "module autoinstallers" modules can automatically install missing module
during run-time using one of installers (usually `cpanm` a.k.a.
<pm:App::cpanminus>). Convenient when running a Perl script (that comes without
a proper distribution or `cpanfile`) that uses several modules which you might
not have. The alternative to lib::xi is the "trial and error" method: repeatedly
run the Perl script to see which module it tries and fails to load.

They work by installing a hook in `@INC`. Read more about require hooks in
`perlfunc` under the `require` function.

MARKDOWN
    entries => [
        {module => 'lazy'},
        {module => 'lib::xi'},
        {module => 'Module::AutoINC'},

lib/Acme/CPANModules/ModuleAutoinstallers.pm  view on Meta::CPAN

=head1 VERSION

This document describes version 0.004 of Acme::CPANModules::ModuleAutoinstallers (from Perl distribution Acme-CPANModules-ModuleAutoinstallers), released on 2024-08-29.

=head1 DESCRIPTION

These "module autoinstallers" modules can automatically install missing module
during run-time using one of installers (usually C<cpanm> a.k.a.
L<App::cpanminus>). Convenient when running a Perl script (that comes without
a proper distribution or C<cpanfile>) that uses several modules which you might
not have. The alternative to lib::xi is the "trial and error" method: repeatedly
run the Perl script to see which module it tries and fails to load.

They work by installing a hook in C<@INC>. Read more about require hooks in
C<perlfunc> under the C<require> function.

=head1 ACME::CPANMODULES ENTRIES

=over

=item L<lazy>



( run in 0.243 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )