NAME
App::lcpan::Manual::Cookbook - App::lcpan cookbook
VERSION
version 1.053.000
FOR MODULE USERS
Listing authors
Listing recent authors
TODO.
Listing dependencies
Showing what other distributions you will have to download and install when you install a module
TODO.
Listing distributions
Listing recent distributions
TODO
Listing modules
Listing recent modules
# Show modules that were added in the last 2 weeks
% lcpan mods -l --added-after '2 weeks ago'
# Show modules that were updated in the last 2 weeks
% lcpan mods -l --updated-after '2 weeks ago'
# Show modules that were not present before the last 'lcpan update'
% lcpan mods -l --added-in-last-update
Showing related modules
You like Sub::Exporter and wonder what other modules might be similar or related to it:
% lcpan related-mods Sub::Exporter
FOR MODULE AUTHORS
Dependencies
Checking if your distribution depends on a non-core Perl module
% lcpan deps YOUR-DIST --exclude-core
Checking if your distribution specifies a circular dependency
TODO.
Finding out if there is any broken prerequisites specified by one of your distributions
To find out which prerequisites that your distributions specify but are currently not indexed (i.e. probably cannot be installed by users):
% lcpan author-deps YOURCPANID --broken --dont-uniquify
Reverse dependencies
Listing distributions of other CPAN authors that depend on one of your modules
% lcpan author-rdeps YOURCPANID --user-author-isnt YOURCPANID
Listing distributions of other CPAN authors that recently depend on one of your modules
# Show dependencies that were added in the last 2 weeks
% lcpan author-rdeps YOURCPANID --user-author-isnt YOURCPANID --added-after '2 weeks ago'
# Show dependencies that were updated in the last 2 weeks
% lcpan author-rdeps YOURCPANID --user-author-isnt YOURCPANID --updated-after '2 weeks ago'
# Show dependencies that were not present before your last 'lcpan update'
% lcpan author-rdeps YOURCPANID --user-author-isnt YOURCPANID --added-in-last-update
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.