Scroll to navigation

Dancer2::Plugins(3pm) User Contributed Perl Documentation Dancer2::Plugins(3pm)

NAME

Dancer2::Plugins - Recommended Dancer2 plugins

VERSION

version 0.300005

DESCRIPTION

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.

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.
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.
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.

Session Engines

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!

AUTHOR

Dancer Core Developers

COPYRIGHT AND LICENSE

This software is copyright (c) 2021 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.

2021-03-13 perl v5.32.1