The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "plack middleware"

Plack::Middleware - Base class for easy-to-use PSGI middleware River stage four • 760 direct dependents • 1891 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.0051 - 05 Jan 2024 23:11:02 UTC - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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

This package allows serving static files with mccs in the form of a Plack middleware. It allows for more flexibility with regards to which paths are to be served by "mccs", as it can serve requests based on regular expressions rather than a path pref...

IDOPEREL/Plack-App-MCCS-2.002000 - 14 Aug 2023 22:25:51 UTC - Search in distribution
  • mccs - Fully-featured static file server.

Plack::Middleware::I18N - language detection River stage zero No dependents

Plack::Middleware::I18N detects client's languages and set $env variables. Language detection All detected languages are validated against available languages. From path When "PATH_INFO" contains something like "/en/path/to", then "en" is detected as...

VTI/Plack-I18N-0.04 - 02 Feb 2015 08:27:12 UTC - Search in distribution

Plack::Middleware::DBGp - interactive debugging for Plack applications River stage zero No dependents

Add interactive debugging support via the DBGp protocol <http://xdebug.org/docs-dbgp.php> to Plack applications. When debugging, the debugger running inside the application establishes a connection to an external DBGp client (typically a GUI program)...

MBARBON/Plack-Middleware-DBGp-0.13 - 09 Aug 2016 20:42:02 UTC - Search in distribution

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 - Search in distribution

Plack::Middleware::JSON - 给输出内容转换成 JSON, 并且自动兼容 JSONP. River stage zero No dependents

Plack::Middleware::JSON 这个是用于给 PSGI 应用输出结果转换成 JSON 结果, 注意就是 PSGI 的第三个参数 $_[2] 必须是一个数组引用或者哈希引用. POD ERRORS Hey! The above document had some coding errors, which are explained below: Around line 3: Non-ASCII character seen before =encoding in '这个是用于给'....

FUKAI/Plack-Middleware-JSON-0.01 - 17 Feb 2015 07:03:31 UTC - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

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 - Search in distribution

Plack::Middleware::Cache - Use Cached Responses of Certain URIs River stage one • 2 direct dependents • 5 total dependents

This middleware allows you to cache expensive and non-changing responses from URIs that match a list of regular expression patterns....

INGY/Plack-Middleware-Cache-0.19 - 16 Aug 2014 19:04:25 UTC - Search in distribution
504 results (0.12 seconds)