The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Plack::Middleware::Curlizer - Building Curl Command from Plack Request

SYNOPSIS

    enable 'Curlizer';

DESCRIPTION

Plack::Middleware::Curlizer gives you a command line for an HTTP request by Curl from Plack Request.

This module has been inspired by the "copy as cURL" feature on Web Browsers.

MIDDLEWARE OPTIONS

callback($code)

By default, callback is set below code ref.

    sub {
        my ($curl, $req, $env) = @_;
        print "$curl\n";
    }

METHODS

call

prepare_app

REPOSITORY

Plack::Middleware::Curlizer is hosted on github: http://github.com/bayashi/Plack-Middleware-Curlizer

I appreciate any feedback :D

AUTHOR

Dai Okabayashi <bayashi@cpan.org>

SEE ALSO

curl

Plack::Middleware

LICENSE

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.