table of contents
Plack::Middleware::RemoveRedundantBody(3) | User Contributed Perl Documentation | Plack::Middleware::RemoveRedundantBody(3) |
NAME¶
Plack::Middleware::RemoveRedundantBody - Plack::Middleware which removes body for HTTP response if it's not required
VERSION¶
version 0.09
SYNOPSIS¶
use strict; use warnings; use Plack::Builder; my $app = sub { ... }; builder { enable "RemoveRedundantBody"; $app; };
DESCRIPTION¶
This module removes body in HTTP response, if it's not required.
CONTRIBUTORS¶
John Napiorkowski <jjn1056@yahoo.com>
Karen Etheridge <ether@cpan.org>
Aristotle Pagaltzis <pagaltzis@gmx.de>
Tomohiro Hosaka <hello@bokut.in>
Robert Rothenberg <rrwo@cpan.org>
AUTHOR¶
Upasana <me@upasana.me>
COPYRIGHT AND LICENSE¶
This software is copyright (c) 2019 by Upasana.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2019-07-16 | perl v5.40.0 |