JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q34379F
  • License MIT

Package Exports

  • s3-tus-store

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (s3-tus-store) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.