@tus/s3-store
👉 Note: since 1.0.0 packages are split and published under the @tus
scope.
The old package, tus-node-server
, is considered unstable and will only receive security fixes.
Make sure to use the new package.
Contents
Install
In Node.js (16.0+), install with npm:
npm install @tus/s3-store
Use
const {Server} = require('@tus/server')
const {S3Store} = require('@tus/s3-store')
const s3Store = new S3Store({
partSize: 8 * 1024 * 1024,
s3ClientConfig: {
bucket: process.env.AWS_BUCKET,
region: process.env.AWS_REGION,
credentials: {
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
},
},
})
const server = new Server({path: '/files', datastore: s3Store})
API
This package exports S3Store
. There is no default export.
new S3Store(options)
Creates a new AWS S3 store with options.
options.bucket
The bucket name.
options.partSize
The preferred part size for parts send to S3. Can not be lower than 5MiB or more than 5GiB.
The server calculates the optimal part size, which takes this size into account,
but may increase it to not exceed the S3 10K parts limit.
options.s3ClientConfig
Options to pass to the AWS S3 SDK.
Checkout the S3ClientConfig
docs for the supported options. You need to at least set the region
, bucket
name, and your preferred method of authentication.
options.expirationPeriodInMilliseconds
Enables the expiration extension and sets the expiration period of an upload url in milliseconds.
Once the expiration period has passed, the upload url will return a 410 Gone status code.
options.useTags
Some S3 providers don't support tagging objects.
If you are using certain features like the expiration extension and your provider doesn't support tagging, you can set this option to false
to disable tagging.
options.cache
An optional cache implementation (KvStore
).
Default uses an in-memory cache (MemoryKvStore
).
When running multiple instances of the server,
you need to provide a cache implementation that is shared between all instances like the RedisKvStore
.
See the exported KV stores from @tus/server
for more information.
Extensions
The tus protocol supports optional extensions. Below is a table of the supported extensions in @tus/s3-store
.
Termination
After a multipart upload is aborted, no additional parts can be uploaded using that upload ID. The storage consumed by any previously uploaded parts will be freed. However, if any part uploads are currently in progress, those part uploads might or might not succeed. As a result, it might be necessary to set an S3 Lifecycle configuration to abort incomplete multipart uploads.
Expiration
Unlike other stores, the expiration extension on the S3 store does not need to call server.cleanUpExpiredUploads()
.
The store creates a Tus-Complete
tag for all objects, including .part
and .info
files, to indicate whether an upload is finished.
This means you could setup a lifecyle policy to automatically clean them up without a CRON job.
{
"Rules": [
{
"Filter": {
"Tag": {
"Key": "Tus-Complete",
"Value": "false"
}
},
"Expiration": {
"Days": 2
}
}
]
}
If you want more granularity, it is still possible to configure a CRON job to call server.cleanExpiredUploads()
yourself.
Examples
Example: using credentials
to fetch credentials inside a AWS container
The credentials
config is directly passed into the AWS SDK so you can refer to the AWS docs for the supported values of credentials
const aws = require('aws-sdk')
const {Server} = require('@tus/server')
const {FileStore} = require('@tus/s3-store')
const s3Store = new S3Store({
partSize: 8 * 1024 * 1024,
s3ClientConfig: {
bucket: process.env.AWS_BUCKET,
region: process.env.AWS_REGION,
credentials: new aws.ECSCredentials({
httpOptions: {timeout: 5000},
maxRetries: 10,
}),
},
})
const server = new Server({path: '/files', datastore: s3Store})
Types
This package is fully typed with TypeScript.
Compatibility
This package requires Node.js 16.0+.
Contribute
See contributing.md
.
License
MIT © tus