Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binded/s3-tus-store
tus store implementation for s3/minio/etc.
https://github.com/binded/s3-tus-store
Last synced: about 5 hours ago
JSON representation
tus store implementation for s3/minio/etc.
- Host: GitHub
- URL: https://github.com/binded/s3-tus-store
- Owner: binded
- License: mit
- Created: 2016-09-19T03:18:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-01T04:09:53.000Z (over 7 years ago)
- Last Synced: 2024-09-25T22:26:30.558Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 40 KB
- Stars: 12
- Watchers: 9
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# s3-tus-store
[![Build Status](https://travis-ci.org/blockai/s3-tus-store.svg?branch=master)](https://travis-ci.org/blockai/s3-tus-store)
[![tus-store-compatible](https://github.com/blockai/abstract-tus-store/raw/master/badge.png)](https://github.com/blockai/abstract-tus-store)
This store is also compatible with [minio](https://github.com/minio/minio) (see [test/](./test/index.test.js)).
## Install
```bash
npm install --save s3-tus-store
```Requires Node v6+
## Usage
```javascript
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](https://github.com/blockai/abstract-tus-store#api)
for API documentation.