uppy/website/src/docs/tus.md
2017-10-23 11:49:25 +02:00

547 B

type order title permalink
docs 30 Tus docs/tus/

The Tus plugin brings tus.io resumable file uploading to Uppy by wrapping the tus-js-client.

uppy.use(Tus, {
  resume: true,
  autoRetry: true,
  retryDelays: [0, 1000, 3000, 5000]
})

Options

The Tus plugin supports all of tus-js-client's options. Additionally:

autoRetry: true

Whether to auto-retry the upload when the user's internet connection is back online after an outage.