uppy/packages/@uppy/aws-s3-multipart
github-actions[bot] 9816fd7f73
Release: uppy@3.26.0 (#5223)
| Package                | Version | Package                | Version |
| ---------------------- | ------- | ---------------------- | ------- |
| @uppy/aws-s3-multipart |  3.12.0 | @uppy/webcam           |   3.4.2 |
| @uppy/core             |  3.12.0 | uppy                   |  3.26.0 |
| @uppy/transloadit      |   3.7.0 |                        |         |

- meta: remove Companion's `prepublishOnly` (Mikael Finstad / #5220)
- docs: document clearUploadedFiles (Merlijn Vos / #5204)
- @uppy/webcam: add missing types for `recordedVideo` (Antoine du Hamel / #5208)
- @uppy/core: check capabilities in clearUploadedFiles (Merlijn Vos / #5201)
- @uppy/core: PartialTree - change the `maxTotalFileSize` error (Evgenia Karunus / #5203)
- @uppy/transloadit: remove `updateNumberOfFilesInAssembly` (Merlijn Vos / #5202)
- @uppy/aws-s3: resolve all headers on response (Merlijn Vos / #5195)
- docs: Improve provider docs: OneDrive (Evgenia Karunus / #5196)
2024-06-04 09:07:09 +00:00
..
src @uppy/aws-s3: resolve all headers on response (#5195) 2024-05-28 09:54:47 +02:00
types meta: enforce use of .js extension in import type declarations (#5126) 2024-04-29 16:23:28 +02:00
CHANGELOG.md Release: uppy@3.24.0 (#5040) 2024-03-27 14:57:26 +00:00
LICENSE Move S3 Multipart upload to a separate package. 2018-06-21 16:37:55 +02:00
package.json Release: uppy@3.26.0 (#5223) 2024-06-04 09:07:09 +00:00
README.md meta: enable prettier for markdown (#5133) 2024-05-02 11:35:55 +02:00
tsconfig.build.json @uppy/aws-s3-multipart: refactor to TS (#4902) 2024-03-19 22:30:32 +01:00
tsconfig.json @uppy/aws-s3-multipart: refactor to TS (#4902) 2024-03-19 22:30:32 +01:00

@uppy/aws-s3-multipart

Uppy logo: a smiling puppy above a pink upwards arrow

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 S3s Multipart upload strategy. With this strategy, files are chopped up in parts of 5MB+ each, so they can be uploaded concurrently. Its 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 Transloadits 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.