https://github.com/perldancer/dancer2-plugin-syntax-getpost
Syntactic sugar for GET+POST handlers
https://github.com/perldancer/dancer2-plugin-syntax-getpost
Last synced: 29 days ago
JSON representation
Syntactic sugar for GET+POST handlers
- Host: GitHub
- URL: https://github.com/perldancer/dancer2-plugin-syntax-getpost
- Owner: PerlDancer
- Created: 2013-03-06T20:19:30.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T21:58:30.000Z (over 2 years ago)
- Last Synced: 2025-06-28T01:42:55.275Z (12 months ago)
- Language: Perl
- Homepage: https://metacpan.org/author/DAGOLDEN
- Size: 10.7 KB
- Stars: 1
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
- Contributing: CONTRIBUTING
Awesome Lists containing this project
README
=pod
=encoding UTF-8
=head1 NAME
Dancer2::Plugin::Syntax::GetPost - Syntactic sugar for GET+POST handlers
=head1 VERSION
version 0.003
=head1 SYNOPSIS
use Dancer2::Plugin::Syntax::GetPost;
get_post '/myform' => sub { ... };
=head1 DESCRIPTION
This module provides very simple syntactic sugar to define a handler for GET and
POST requests. Instead of writing this:
any [qw/get post/] => '/form' => sub { ... };
You can write just this:
get_post '/form' => sub { ... };
=for Pod::Coverage method_names_here
=head1 SEE ALSO
=over 4
=item *
L
=back
=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L
git clone https://github.com/PerlDancer/dancer2-plugin-syntax-getpost.git
=head1 AUTHOR
David Golden
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2023 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut