uppy/packages/@uppy/aws-s3-multipart
Artur Paikin 0f95529cc5 Release
2019-04-19 15:46:25 +03:00
..
src rename serverUrl to companionUrl 2019-04-14 13:53:50 +01:00
types rename serverUrl to companionUrl 2019-04-14 13:53:50 +01:00
LICENSE Move S3 Multipart upload to a separate package. 2018-06-21 16:37:55 +02:00
package-lock.json move everything to /examples 2018-12-19 14:46:36 +03:00
package.json Release 2019-04-19 15:46:25 +03:00
README.md rename serverUrl to companionUrl 2019-04-14 13:53:50 +01:00

@uppy/aws-s3-multipart

Uppy logo: a superman puppy in a pink suit

Build Status

The AwsS3Multipart plugin can be used to upload files directly to an S3 bucket using S3s Multipart upload strategy. With this strategy, files are chopped up in parts of 5MB+ each, so they can be uploaded concurrently. Its also very 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

const Uppy = require('@uppy/core')
const AwsS3Multipart = require('@uppy/aws-s3-multipart')

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

Installation

$ npm install @uppy/aws-s3-multipart --save

We recommend installing from npm and then using a module bundler such as Webpack, Browserify or Rollup.js.

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.