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

@tussle/storage-r2

v0.7.4

Published

Tussle storage component backed by Cloudflare R2 storage

Downloads

531

Readme

Cloudflare R2 Storage

Store multi-part uploads in Cloudflare R2.

This Tussle storage backend provides support for Tus uploads directly to Cloudflare R2 via Cloudflare Workers. It does not use the R2 multipart features but rather stores individual upload chunks as separate R2 records which are optionally merged upon the completion of a successful upload. If it is preferred to avoid the final merging step (see skipMerge) there is a storage.getFile() method which returns an object representing the collection of file parts in R2 which can be read conveniently as a single ReadableStream.

This storage backend is also capable of fully recovering file state from R2, therefore it is recommended to use @tussle/state-memory, or something even less reliable such as @tussle/state-memory-ttl.

Special options

  • checkpoint: number (optional) -- If provided, automatically save every N bytes as a chunk even if the client is not using an explicit chunk size. This feature is compatible with clients that do use an explicit chunk size, but it is advisable to set checkpoint to a multiple of your chunk size.
  • r2ListLimit: number (optional) -- Limit the maximum number of records to list while rebuilding state from R2. You probably don't need to use this, as it was primarily added to circumvent a (now resolved) Cloudflare Worker's bug. This may be removed at some point in the future.
  • appendUniqueSubdir: (location: string) => string (optional) -- For partial concatenation requests, override the unique subdirectory for each parallel upload. The built-in implementation should be sufficient for most users. Example using nanoid: appendUniqueSubdir: (location) => ${location}/${nanoid()}
  • skipMerge: boolean (default: false) -- After an upload is complete, individual upload chunks are merged into a single R2 record at the original storage path. Setting this option to true will skip this post-processing step and leave individual upload chunks as separate R2 records. Un-merged uploads can still be conveniently read/sliced using storage.getFile() which returns an R2File instance. The merging process is achieved by writing a new R2 record by streaming the individual chunks to it in order, this takes a little time depending on the file size and involves an additional R2 write operation and at least one read operation per uploaded chunk.

Occasional R2 API errors

R2 worker API calls will occasionally throw exceptions, from We encountered an internal error: Please try again. (10001) to slightly more cryptic errors such as put: Client Disconnect (10054).

If you would like to perform transparent retries in response to R2 API errors, you can use the ReBucket adapter class to wrap your bucket before passing it to the tussle storage service.

import {ReBucket, TussleStorageR2} from '@tussle/storage-r2';

const storage = new TussleStorageR2({
	stateService,
	bucket: new ReBucket(bindings.BUCKET, {
		retries: 3,
		error: console.error,
	}),
});

Example

See Cloudflare Worker + R2 for an example of this storage backend in use.