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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@superdoc/v2-collaboration-upgrade

v0.1.0-alpha.0

Published

Fail-closed, provider-neutral SuperDoc v1 to v2 collaboration upgrades.

Readme

@superdoc/v2-collaboration-upgrade

Node-only, fail-closed tooling for moving a collaboration document from SuperDoc v1 to a separate v2 room.

import { upgradeCollaboration } from '@superdoc/v2-collaboration-upgrade';
import { createBinaryStoreUpgradeAdapter } from '@superdoc/v2-collaboration-upgrade/binary-store';

const provider = createBinaryStoreUpgradeAdapter({
  read: async (roomId) => storage.read(roomId),
  create: async (roomId, update) => storage.createIfAbsent(roomId, update),
});

await upgradeCollaboration({
  documentId: 'invoice-123',
  sourceRoomId: 'invoice-123-v1',
  provider,
  activate: ({ documentId, targetRoomId, idempotencyKey }) =>
    routing.activateOnce({ documentId, targetRoomId, idempotencyKey }),
});

Pause edits for the document before calling the API and resume them only after it succeeds. The source room is read but never written. A new v2 room is created and freshly read back through the provider. SuperDoc then re-reads the complete v1 source and refuses to call activate if its bytes, storage identity, or fencing generation changed.

The final source check is defense in depth, not a replacement for pausing writers: a provider read and your routing transaction cannot be made atomic by a provider-neutral library.

activateOnce is your one durable routing compare-and-set. It must return { disposition: 'activated' | 'already-active', routingVersion: string }. SuperDoc supplies the same idempotencyKey on every retry and rejects a void or malformed response. A retry may call this function again, but it must return already-active instead of changing routing a second time.

Persist targetRoomId as the v2 collaboration document ID. providerRoomName is the encoded physical provider key exposed only for diagnostics and custom storage adapters.

Provider adapters are separate imports so the root package does not load y-websocket, Hocuspocus, or Liveblocks clients. superdoc is a peer dependency: the package loads its narrow Node upgrade engine instead of bundling the interactive editor or renderer.

This is the only upgrade package customers install. It includes a frozen [email protected] reader that runs in an isolated child process. The v1 runtime never shares an editor process with v2 and never receives a writable provider.