The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

DESCRIPTION

A Dancer plugin that provides syntax sugar for setting the status and returning a response in one shot. This plugin imports the function res().

INSTALLATION

cpan Dancer::Plugin::Res

EXAMPLE

use Dancer;
use Dancer::Plugin::Res;
post '/widgets' => sub {
    return res 400 => to_json { err => 'name is required' }
        unless param 'name';
    # ...
    return res 201, to_json { widget => $widget };
};
dance;

DOCUMENTATION

See Dancer::Plugin::Res. Also, after installation, you can view the documentation via man or perldoc:

man Dancer::Plugin::Res