Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Session

package App;
use Dancer2;

#set session => 'YAML';

get '/' => sub {
    my $counter = session('counter');
    $counter++;
    session counter => $counter;
    return $counter;
};

App->to_app;