This store is also compatible with minio (see test/).
npm install --save s3-tus-store
Requires Node v6+
import s3TusStore from 's3-tus-store'
import aws from 'aws-sdk'
const store = s3TusStore({
bucket: 'my-awesome-s3-bucket',
client: new aws.S3({
accessKeyId: process.env.S3_ACCESS_KEY_ID,
secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
}),
})
See abstract-tus-store for API documentation.