
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@tus/file-store
Advanced tools
@tus/file-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 packages.
In Node.js >=20.19.0, install with npm:
npm install @tus/file-store
const {Server} = require('@tus/server')
const {FileStore} = require('@tus/file-store')
const server = new Server({
path: '/files',
datastore: new FileStore({directory: './some/path'}),
})
// ...
This package exports FileStore
. There is no default export.
new FileStore(options)
Creates a new file store with options.
options.directory
The directory to store the files on disk (string
).
options.configstore
Provide your own storage solution for the metadata of uploads (KvStore
).
Default uses FileKvStore
which puts the metadata file next to the uploaded file. See the
exported KV stores from @tus/server
for more information.
options.expirationPeriodInMilliseconds
The time before an ongoing upload is considered expired (number
).
This is since the time of creation, not modification. Once an upload is considered
expired, uploads can be removed with cleanUpExpiredUploads
.
The tus protocol supports optional extensions. Below is a table of the supported
extensions in @tus/file-store
.
Extension | @tus/file-store |
---|---|
Creation | ✅ |
Creation With Upload | ✅ |
Expiration | ✅ |
Checksum | ❌ |
Termination | ✅ |
Concatenation | ❌ |
For demonstration purposes we will create a memory config store, but that's not a good idea. It's written in TypeScript.
import type {Upload} from '@tus/server'
export class MemoryConfigstore {
data: Map<string, Upload> = new Map()
get(key: string): Upload | undefined {
return this.data.get(key)
}
set(key: string, value: Upload) {
this.data.set(key, value)
}
delete(key: string) {
return this.data.delete(key)
}
get list(): Record<string, Upload> {
return Object.fromEntries(this.data.entries())
}
}
Then use it:
import {MemoryConfigstore} from './MemoryConfigstore'
const store = new FileStore({directory: './some/path', configstore: MemoryConfigstore}),
This package is fully typed with TypeScript.
This package requires Node.js >=20.19.0.
See
contributing.md
.
FAQs
Local file storage for @tus/server
The npm package @tus/file-store receives a total of 9,917 weekly downloads. As such, @tus/file-store popularity was classified as popular.
We found that @tus/file-store demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.