HTTP-Upload-FlowJs

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

        };
      };

OVERVIEW

    flow.js <https://github.com/flowjs/flow.js> is a client-side Javascript
    upload library that uploads a file in multiple parts. It requires two
    API points on the server side, one GET API point to check whether a
    part already has been uploaded completely and one POST API point to
    send the data of each partial upload to. This Perl module implements
    the backend functionality for both endpoints. It does not implement the
    handling of the HTTP requests themselves, but you likely already use a
    framework like Mojolicious or Dancer for that.

METHODS

 HTTP::Upload::FlowJs->new

      my $flowjs = HTTP::Upload::FlowJs->new(
          maxChunkCount => 1000,
          maxFileSize => 10_000_000,

README.mkdn  view on Meta::CPAN

    };

# OVERVIEW

[flow.js](https://github.com/flowjs/flow.js) is a client-side Javascript upload
library that uploads
a file in multiple parts. It requires two API points on the server side,
one `GET` API point to check whether a part already has been uploaded
completely and one `POST` API point to send the data of each partial
upload to. This Perl module implements the backend functionality for
both endpoints. It does not implement the handling of the HTTP requests
themselves, but you likely already use a framework like [Mojolicious](https://metacpan.org/pod/Mojolicious)
or [Dancer](https://metacpan.org/pod/Dancer) for that.

# METHODS

## `HTTP::Upload::FlowJs->new`

    my $flowjs = HTTP::Upload::FlowJs->new(
        maxChunkCount => 1000,
        maxFileSize => 10_000_000,

lib/HTTP/Upload/FlowJs.pm  view on Meta::CPAN

  };

=head1 OVERVIEW

L<flow.js|https://github.com/flowjs/flow.js> is a client-side Javascript upload
library that uploads
a file in multiple parts. It requires two API points on the server side,
one C<GET> API point to check whether a part already has been uploaded
completely and one C<POST> API point to send the data of each partial
upload to. This Perl module implements the backend functionality for
both endpoints. It does not implement the handling of the HTTP requests
themselves, but you likely already use a framework like L<Mojolicious>
or L<Dancer> for that.

=head1 METHODS

=head2 C<< HTTP::Upload::FlowJs->new >>

  my $flowjs = HTTP::Upload::FlowJs->new(
      maxChunkCount => 1000,
      maxFileSize => 10_000_000,



( run in 0.468 second using v1.01-cache-2.11-cpan-2b1a40005be )