NAME
HTTP::Engine - Web Server Gateway Interface and HTTP Server Engine Drivers (Yet Another Catalyst::Engine)
SYNOPSIS
use HTTP::Engine;
HTTP::Engine->new(
config => 'config.yaml',
handle_request => sub {
my $c = shift;
$c->res->body( Dumper($e->req) );
}
)->run;
CONCEPT RELEASE
Version 0.0.x is a concept release, the internal interface is still fluid. It is mostly based on the code of Catalyst::Engine.
DESCRIPTION
HTTP::Engine is a bare-bones, extensible HTTP engine. It is not a socket binding server. The purpose of this module is to be an adaptor between various HTTP-based logic layers and the actual implementation of an HTTP server, such as, mod_perl and FastCGI
PLUGINS
For all non-core plugins (consult #codrepos first), use the HTTPEx:: namespace. For example, if you have a plugin module named "HTTPEx::Plugin::Foo", you could load it as
use HTTP::Engine;
HTTP::Engine->load_plugins(qw( +HTTPEx::Plugin::Foo ));
AUTHOR
Kazuhiro Osawa <ko@yappo.ne.jp>
lestrrat
tokuhirom
nyarla
marcus
SEE ALSO
wiki page http://coderepos.org/share/wiki/HTTP%3A%3AEngine
REPOSITORY
svn co http://svn.coderepos.org/share/lang/perl/HTTP-Engine/trunk HTTP-Engine
HTTP::Engine's Subversion repository is hosted at http://coderepos.org/share/. patches and collaborators are welcome.
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.