|
|
|
|
|
by kvz
2763 days ago
|
|
Yes that is very helpful. Our s3 storage backend for tusd uses it, and our https://uppy.io file uploader does too, usable directly from the browser (so you can choose to not use tus at all with it). S3 resumable uploads do come with a few limitations that make some people still choose tus tho: * chunks need to be >5MB which can be problematic on flaky/poor connections (rural areas, tunnels, clubs/basements, people on the move switching connections all the time) * your s3 bucket needs to allow write by the world, or you need to deploy signature authentication * there’s an s3 vendor lock-in some might worry about * not an open protocol, no chance of advancing it with the community That said, that still leaves a large audience for direct s3 resumable uploads and I’m thankful aws offers it! |
|