Dancer2
Dancer2 copied to clipboard
Perl Dancer Next Generation (rewrite of Perl Dancer)
Just want to say, I really like Dancer2. But I hit a limitation with one area of its support for recent improvements to async style code calling. I have been...
The documentation for `Dancer2::Core::Error` includes instantiating a new object and then using the `render` method (which doesn't exist anymore) and then setting it as the response using `Dancer2::Core::Response`'s `set`, which...
I had worked in the past on a Perl::Lint policy. It's available [here](https://github.com/PerlDancer/perl-lint-policy-dancer2). I want to use this ticket to collect what this should include (possibly multiple policies) so it...
Fix problem described in #1621. Rebuild the Template::Toolkit engine if it doesn't complete its render, otherwise a recursion error is thrown for any subsequent template processes. This is prevalent when...
I have dozens of articles which do not require any extra processing so I 1. Put them in the required sub folders in the views folder. 2. Do not write...
This pull request contains spelling and grammar fixes, as well as a small fix to the gen app command in the docs.
The order of the arguments in add_route was such that, whenever you called add_route from a plugin, any 'prefix' entry you submitted was ignored utterly. Rearranging the order here lets...
In Dancer2::Core::App::add_route, putting the prefix => option (line 1230) above the attrs that are given by the caller will let the caller override the prefix. If you attempt to use...
Given this code: ``` #!/usr/bin/env perl use Dancer2; get '/' => sub { my $name = "Marco"; return "Hello $name\n"; }; start; ``` ``` ./dancer.pl >> Dancer2 v0.400000 server 293140...