s3-tus-store
v1.2.6
Published
[![Build Status](https://travis-ci.org/blockai/s3-tus-store.svg?branch=master)](https://travis-ci.org/blockai/s3-tus-store)
Downloads
18
Maintainers
Readme
s3-tus-store
This store is also compatible with minio (see test/).
Install
npm install --save s3-tus-store
Requires 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.