1.2.6 • Published 7 years ago

s3-tus-store v1.2.6

Weekly downloads
47
License
MIT
Repository
github
Last release
7 years ago

s3-tus-store

Build Status

tus-store-compatible

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.