NAME

peri-htserve - Serve Perl modules over HTTP(S) using the Riap::HTTP protocol

VERSION

version 0.20

SYNOPSIS

# serve modules over HTTP, using default options (HTTP port 5000)
$ peri-htserve Foo::Bar Baz::*
# you can now do
[200,"OK",{"The":"result","...":"..."}]
# or use the Perl client
$ perl -MPerinci::Access -e'
my $pa = Perinci::Access->new;
my $res = $pa->request(call=>"http://localhost:5000/Foo/Bar/func2");'
### some other peri-htserve options:
# change ports/etc (see http_ports, https_ports, and unix_sockets in Gepok doc)
$ peri-htserve --http-ports "localhost:5000,*:80" ...
# see all available options
$ peri-htserve --help

DESCRIPTION

For now, please see source code for more details (or --help).

QUICK TIPS

Complex argument

In raw HTTP, you can send complex argument by encoding it in JSON, e.g.:

Notice the ":j" suffix after parameter name.

TODO

  • Pass more Plackup options.

  • Pass more PSGI server options.

SEE ALSO

Riap::HTTP

Perinci::Access, Perinci::Access::HTTP::Client

PSGI servers used: Gepok, Starman

Plack::Runner

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.