use strict; use warnings; use lib 'lib'; use Data::Dumper; use HTTP::Engine; use String::TT qw/strip tt/; use YAML; my $engine = HTTP::Engine->new(YAML::Load(qq{ interface: module: ServerSimple args: port: 14000 request_handler: main::handler })); $engine->run; sub handler { my $req = shift; local $Data::Dumper::Sortkeys = 1; my $req_dump = Dumper( $req ); my $raw = $req->raw_body; my $body = strip tt q{
[% raw      | html %]
[% req_dump | html %]
}; HTTP::Engine::Response->new( body => $body ); }