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

NAME

HTTP::Server::Simple - A minimal HTTP server

SYNOPSIS

    class MyServer is HTTP::Server::Simple;

    method handler {
        $.remote.say('Hello World!');
    }


    use MyServer;
    my $s = MyServer.new;
    $s.run;
    

DESCRIPTION

Perl 6 port of HTTP::Server::Simple.

AUTHOR

Sebastian Riedel <sri@oook.de>

Based upon HTTP::Server::Simple by Jesse Vincent

LICENSE

This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.