Socket
Socket
Sign inDemoInstall

@uppy/aws-s3-multipart

Package Overview
Dependencies
15
Maintainers
5
Versions
104
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @uppy/aws-s3-multipart

Upload to Amazon S3 with Uppy and S3's Multipart upload strategy


Version published
Weekly downloads
112K
increased by1.86%
Maintainers
5
Install size
3.46 MB
Created
Weekly downloads
 

Changelog

Source

3.11.0

Released: 2023-07-06

| Package | Version | Package | Version | | ---------------------- | ------- | ---------------------- | ------- | | @uppy/aws-s3 | 3.2.1 | @uppy/golden-retriever | 3.1.0 | | @uppy/aws-s3-multipart | 3.4.1 | @uppy/status-bar | 3.2.1 | | @uppy/companion | 4.6.0 | @uppy/tus | 3.1.2 | | @uppy/companion-client | 3.2.0 | @uppy/xhr-upload | 3.3.1 | | @uppy/core | 3.3.0 | uppy | 3.11.0 |

  • @uppy/companion: fix infinite recursion in uploader test (Mikael Finstad / #4536)
  • @uppy/xhr-upload: export Headers type (Masum ULU / #4549)
  • @uppy/aws-s3-multipart: increase priority of abort and complete (Stefan Schonert / #4542)
  • @uppy/aws-s3: fix remote uploads (Antoine du Hamel / #4546)
  • meta: use corepack yarn instead of npm to launch E2E (Antoine du Hamel / #4545)
  • @uppy/aws-s3-multipart: fix upload retry using an outdated ID (Antoine du Hamel / #4544)
  • @uppy/status-bar: remove throttled component (Artur Paikin / #4396)
  • @uppy/aws-s3-multipart: fix Golden Retriever integration (Antoine du Hamel / #4526)
  • examples/aws-nodejs: merge multipart and non-multipart examples (Antoine du Hamel / #4521)
  • @uppy/companion: bump semver from 7.3.7 to 7.5.3 (dependabot[bot] / #4529)
  • @uppy/aws-s3-multipart: add types to internal fields (Antoine du Hamel / #4535)
  • examples/aws-nodejs: update README (Antoine du Hamel / #4534)
  • examples/aws-nodejs: showcase an example without preflight requests (Antoine du Hamel / #4516)
  • @uppy/aws-s3-multipart: fix pause/resume (Antoine du Hamel / #4523)
  • @uppy/status-bar: fix ETA when Uppy recovers its state (Antoine du Hamel / #4525)
  • @uppy/aws-s3-multipart: fix resume single-chunk multipart uploads (Antoine du Hamel / #4528)
  • @uppy/companion: fix part listing in s3 (Antoine du Hamel / #4524)
  • example/aws-php: make it forward-compatible with the next Uppy major (Antoine du Hamel / #4522)
  • @uppy/golden-retriever: refactor to modernize the codebase (Antoine du Hamel / #4520)
  • examples/aws-nodejs: upgrade to AWS-SDK v3 (Antoine du Hamel / #4515)
  • @uppy/companion: implement refresh for authentication tokens (Mikael Finstad / #4448)
  • @uppy/aws-s3-multipart: disable pause/resume for remote uploads in the UI (Artur Paikin / #4500)
  • @uppy/tus: retry on 423 HTTP error code (Antoine du Hamel / #4512)

Readme

Source

@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 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.

Keywords

FAQs

Last updated on 27 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc