Skip to main content

ChunkedUploady

Package​

@rpldy/chunked-uploady

Installation​

npm install @rpldy/chunked-uploady

Props​

Name (* = mandatory)TypeDefaultDescription
chunkedbooleantruechunk uploads. setting to false will return to default sending behavior
chunkSizenumber5242880the chunk size. relevant when uploaded file is larger than the value
retriesnumber0how many times to retry sending a failed chunk
parallelnumber0how many (chunk) requests to send simultaneously

In addition, all UploadOptions props can be passed to ChunkedUploady.

See: Uploady documentation for detailed list of upload options.

retries​

It's possible to have chunked uploads retry in case of failure. By default, one chunk failing once will cause the entire upload to error.