Dancer2::Plugins - Recommended Dancer2 plugins
version 0.400001
Dancer2 aims to keep the core as small as possible, but there are a growing number of useful plugins to add helpful features.
This document provides a quick summary of some recommended plugins.
Wrap any simple class as a service for Dancer2.
Provides easy way to add Ajax route handlers.
Provides an extremely simple way of requiring that a user be logged in before allowing access to certain routes.
Provides an easy to have info of the browser. keyword within your Dancer application.
Provides caching for generated pages and/or arbitrary data. Uses CHI, so is backend-agnostic - caching can be done in memory, to files, using Memcache, in a database, or any other method for which there is a CHI::Driver module.
Provides easy database access via DBI, reading the DB connection details from your app's config file, and taking care of ensuring the connection is still valid and reconnecting if not (useful in persistent environments). Just calling the database keyword gives you a connected and working database handle. It also provides some helpful keywords to make inserting/updating data as simple as it should be.
database
Provides easy access to DBIx::Class database virtualization.
Provides a method for deferring a one-time message across a redirect. It is similar to "flash" messages, but without the race conditions that can result from multiple tabs in a browser or from AJAX requests.
Provides easy email-sending powered by Email::Send - simply call the email keyword. Email sending settings can be taken from your app's config.
email
Provides an easy way to generate RSS or Atom feed.
Dancer2 plugin for Paginator::Lite.
Provides a generic interface to a message queue.
A Dancer2::Plugin::Queue using MongoDBx::Queue.
Makes writing RESTful web services easy.
Plugin to verify pod coverage in our app routes.
Provides very simple syntactic sugar to define a handler for GET and POST requests.
A session factory for Dancer2 that stores session state within a browser cookie.
More plugins are appearing on CPAN all the time - just search for Dancer2::Plugin to see what may have been released since this document was last updated!
Dancer2::Plugin
Dancer Core Developers
This software is copyright (c) 2023 by Alexis Sukrieh.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
To install Dancer2, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Dancer2
CPAN shell
perl -MCPAN -e shell install Dancer2
For more information on module installation, please visit the detailed CPAN module installation guide.