Search results for "module:Middleware"

Fancy::Middleware - Provides alternate implementation of Plack::Middleware in a Moose Role River stage zero No dependents

Fancy::Middleware is an alternate implementation of the Plack::Middleware base class but as a Moose Role instead. This gives us a bit more flexibility in how how the Middleware functionality is gained in a class without having to explicitly subclass....

NPEREZ/Fancy-Middleware-1.101680 - 17 Jun 2010 02:07:23 UTC

Plack::Middleware - Base class for easy-to-use PSGI middleware River stage four • 755 direct dependents • 1884 total dependents

Plack::Middleware is a utility base class to write PSGI middleware. All you have to do is to inherit from Plack::Middleware and then implement the callback "call" method (or the "to_app" method that would return the PSGI code reference) to do the act...

MIYAGAWA/Plack-1.0050 - 05 Sep 2022 15:48:11 UTC

Mojito::Middleware - gather some environment variables River stage zero No dependents

MATEU/Mojito-0.25 - 10 Dec 2017 23:16:26 UTC

Plack::Middleware::SSI - PSGI middleware for server side include content River stage one • 1 direct dependent • 1 total dependent

Will try to handle HTML with server side include directives as well as doing what Plack::Middleware does for "regular files"....

ZARQUON/Plack-Middleware-SSI-0.14 - 15 Mar 2016 09:20:31 UTC

Plack::Middleware::Pod - render POD files as HTML River stage one • 1 direct dependent • 1 total dependent

CORION/Plack-Middleware-Pod-0.05 - 30 Mar 2016 20:28:32 UTC

Plack::Middleware::P3P - Add standard (or custom) P3P header to response River stage zero No dependents

This Plack::Middleware adds a P3P header to all responses (see the W3C page <http://www.w3.org/P3P/>). By default at adds the *CAO*, *PSA* and *OUR* policies. The default policies are enough to make Internet Explorer accept cookies from an iframe, th...

STAUGAARD/Plack-Middleware-P3P-0.001 - 25 Nov 2014 17:26:48 UTC

Plack::Middleware::CSP - Apply HTTP::CSPHeader to your psgi application. River stage zero No dependents

ASHLEY/Plack-Middleware-CSP-0.02 - 30 Jun 2022 14:43:04 UTC

Plack::Middleware::TMT - Text::MicroTemplate on the Plack River stage zero No dependents

when you write tiny web app, you want to write some perl codes in template files. it sounds evil. you can use this module for test or micro app with yourself. for example index.psgi use strict; use warnings; use Plack::Builder; builder { mount '/' =>...

BAYASHI/Plack-Middleware-TMT-0.04 - 27 Oct 2012 14:24:31 UTC

Plack::Middleware::AMF - The great new Plack::Middleware::AMF! River stage zero No dependents

Enable this middleware to allow your Plack-based application to handle Flash Remoting and Flex RPC....

SEAGIRL/Plack-Middleware-AMF-0.02 - 23 Apr 2010 09:40:14 UTC

Plack::Middleware::ESI - PSGI middleware for Edge Side Includes (ESI) River stage zero No dependents

This module provides rudimentary support for using Edge Side Includes in PSGI applications. The primary aim is to support the same subset of features as the Varnish caching proxy server. Essentially, this means support for three ESI tags: * "<esi:inc...

BALDUR/Plack-Middleware-ESI-0.1 - 19 Nov 2010 10:46:24 UTC

Plack::Middleware::WOVN - Translates PSGI application by using WOVN.io. River stage zero No dependents

This is a Plack Middleware component for translating PSGI application by using WOVN.io. Before using this middleware, you must sign up and configure WOVN.io. This is a port of wovnjava (https://github.com/wovnio/wovnjava)....

MASIUCHI/Plack-Middleware-WOVN-0.09 - 08 Apr 2017 04:28:01 UTC

Plack::Middleware::MCCS - Middleware for serving static files with Plack::App::MCCS River stage one • 2 direct dependents • 2 total dependents

This package allows serving static files with Plack::App::MCCS in the form of a middleware. It allows for more flexibility with regards to which paths are to be served by "MCCS", as the app can only be "mount"ed onto a certain path prefix. The middle...

IDOPEREL/Plack-App-MCCS-1.000000 - 24 Oct 2016 14:12:56 UTC

Plack::Middleware::ETag - Adds automatically an ETag header. River stage one • 1 direct dependent • 4 total dependents

Plack::Middleware::ETag adds automatically an ETag header. You may want to use it with "Plack::Middleware::ConditionalGET". my $app = builder { enable "Plack::Middleware::ConditionalGET"; enable "Plack::Middleware::ETag", file_etag => "inode"; sub {[...

FRANCKC/Plack-Middleware-ETag-0.05 - 15 Jul 2015 04:04:18 UTC

Plack::Middleware::XSLT - XSLT transformations with Plack River stage zero No dependents

Plack::Middleware::XSLT converts XML response bodies to HTML, XML, or text using XML::LibXSLT. The XSLT stylesheet is specified by the environment variable 'xslt.style'. If this variable is undefined or empty, the response is not altered. This rather...

NWELLNHOF/Plack-Middleware-XSLT-0.30 - 18 Oct 2014 18:14:30 UTC

Plack::Middleware::REPL - REPL when your application throws errors or warnings River stage zero No dependents

Plack::Middleware::REPL is a PSGI middleware component that enables REPL (read-eval-print-loop) when your application raises errors. # your Dancer app use Dancer; get '/' => sub { my $self = shift; my $n = parms()->{name}; # typo return "Hi there $n"...

MIYAGAWA/Plack-Middleware-REPL-0.01 - 13 May 2011 04:47:26 UTC

Plack::Middleware::Lint - Validate request and response River stage four • 755 direct dependents • 1884 total dependents

Plack::Middleware::Lint is a middleware component to validate request and response environment formats. You are strongly suggested to use this middleware when you develop a new framework adapter or a new PSGI web server that implements the PSGI inter...

MIYAGAWA/Plack-1.0050 - 05 Sep 2022 15:48:11 UTC

Plack::Middleware::Head - auto delete response body in HEAD requests River stage four • 755 direct dependents • 1884 total dependents

This middleware deletes response body in HEAD requests....

MIYAGAWA/Plack-1.0050 - 05 Sep 2022 15:48:11 UTC

Plack::Middleware::REST - Route PSGI requests for RESTful web applications River stage one • 1 direct dependent • 1 total dependent

Plack::Middleware::REST routes HTTP requests (given in PSGI request format) on the principles of Representational State Transfer (REST). In short, the application manages a set of resources with common base URL, each identified by its URL. One can re...

VOJ/Plack-Middleware-REST-0.10 - 06 Apr 2015 07:13:30 UTC

Plack::Middleware::Pjax - PJAX for your Plack River stage zero No dependents

Plack::Middleware::Pjax adds easy support for serving chromeless pages in combination with jquery-pjax. For more information on what pjax is, check the SEE ALSO links below. It does this by filtering the generated response through Marpa::R2::HTML. If...

MATTP/Plack-Middleware-Pjax-1.114400 - 10 Jan 2015 19:18:54 UTC

Plack::Middleware::XRay - Plack middleware for AWS X-Ray tracing River stage zero No dependents

Plack::Middleware::XRay is a middleware for AWS X-Ray. See also AWS::XRay....

FUJIWARA/Plack-Middleware-XRay-0.07 - 02 Sep 2019 07:51:43 UTC
512 results (0.027 seconds)