
Catalyst::Engine::HTTP - Catalyst HTTP Engine

A script using the Catalyst::Engine::HTTP module might look like:
#!/usr/bin/perl -w
BEGIN { $ENV{CATALYST_ENGINE} = 'HTTP' }
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;

This is the Catalyst engine specialized for development and testing.

Writes the buffer to the client.


Sebastian Riedel, <sri@cpan.org>
Dan Kubb, <dan.kubb-cpan@onautopilot.com>
Sascha Kiefer, <esskar@cpan.org>
Andy Grundman, <andy@hybridized.org>

Many parts are ripped out of HTTP::Server::Simple by Jesse Vincent.

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.