s3-tus-store
v1.2.6
Published
[](https://travis-ci.org/blockai/s3-tus-store)
Maintainers
Readme
s3-tus-store
This store is also compatible with minio (see test/).
Install
npm install --save s3-tus-storeRequires Node v6+
Usage
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.

