npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@tus/file-store

v1.5.0

Published

Local file storage for @tus/server

Downloads

49,369

Readme

@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.

Contents

Install

In Node.js (16.0+), install with npm:

npm install @tus/file-store

Use

const {Server} = require('@tus/server')
const {FileStore} = require('@tus/file-store')

const server = new Server({
  path: '/files',
  datastore: new FileStore({directory: './some/path'}),
})
// ...

API

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.

Extensions

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 | ❌ |

Examples

Example: creating your own config store

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}),

Types

This package is fully typed with TypeScript.

Compatibility

This package requires Node.js 16.0+.

Contribute

See contributing.md.

License

MIT © tus