github-actions[bot] cf84af718e Release: uppy@3.14.0 (#4626) 1 ano atrás
..
src 0ac6478fcd @uppy/aws-s3-multipart: pass the `uploadURL` back to the caller (#4614) 1 ano atrás
types 39e870f487 @uppy/aws-s3,@uppy/aws-s3-multipart: update types (#4611) 1 ano atrás
CHANGELOG.md cf84af718e Release: uppy@3.14.0 (#4626) 1 ano atrás
LICENSE a0798cf5ee Move S3 Multipart upload to a separate package. 6 anos atrás
README.md 7adacb74a7 meta: Fix logos in all the readmes (#4407) 2 anos atrás
package.json cf84af718e Release: uppy@3.14.0 (#4626) 1 ano atrás

README.md

@uppy/aws-s3-multipart

npm version CI status for Uppy tests CI status for Companion tests CI status for browser tests

The AwsS3Multipart plugin can be used to upload files directly to an S3 bucket using S3’s Multipart upload strategy. With this strategy, files are chopped up in parts of 5MB+ each, so they can be uploaded concurrently. It’s also reliable: if a single part fails to upload, only that 5MB has to be retried.

Uppy is being developed by the folks at Transloadit, a versatile file encoding service.

Example

import Uppy from '@uppy/core'
import AwsS3Multipart from '@uppy/aws-s3-multipart'

const uppy = new Uppy()
uppy.use(AwsS3Multipart, {
  limit: 2,
  companionUrl: 'https://companion.myapp.com/',
})

Installation

$ npm install @uppy/aws-s3-multipart

Alternatively, you can also use this plugin in a pre-built bundle from Transloadit’s CDN: Edgly. In that case Uppy will attach itself to the global window.Uppy object. See the main Uppy documentation for instructions.

Documentation

Documentation for this plugin can be found on the Uppy website.

License

The MIT License.