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

@metalabel/dfos-web-relay

v0.7.0

Published

DFOS Web Relay — verifying HTTP relay for identity chains, content chains, beacons, and content blobs

Readme

@metalabel/dfos-web-relay

Portable HTTP relay for the DFOS protocol. Receives, verifies, stores, and serves identity chains, content chains, beacons, countersignatures, and content blobs.

See WEB-RELAY.md for the full relay specification.

Install

npm install @metalabel/dfos-web-relay @metalabel/dfos-protocol

Usage

Embedded (Hono app)

import { createRelay, MemoryRelayStore } from '@metalabel/dfos-web-relay';

const relay = await createRelay({
  store: new MemoryRelayStore(),
});

// relay.app  — Hono application
// relay.did  — the relay's auto-generated DID
// relay.syncFromPeers() — pull operations from configured peers

export default relay.app;

Standalone (Node.js)

import { serve } from '@metalabel/dfos-web-relay/node';

serve({ port: 4444 });

Routes

| Method | Path | Description | | ------ | ---------------------------------------- | ---------------------------------------------------------------- | | GET | /.well-known/dfos-relay | Relay metadata (DID, protocol version) | | POST | /operations | Submit signed operations (identity, content, beacon, countersig) | | GET | /identities/:did | Get identity chain state and operation log | | GET | /content/:contentId | Get content chain state and operation log | | GET | /operations/:cid | Get a single operation by CID | | GET | /beacons/:did | Get beacon for an identity | | GET | /countersignatures/:cid | Get countersignatures for an operation | | GET | /operations/:cid/countersignatures | Same as above (alias) | | PUT | /content/:contentId/blob/:operationCID | Upload blob (auth required) | | GET | /content/:contentId/blob | Download blob at head (auth + credential) | | GET | /content/:contentId/blob/:ref | Download blob at specific operation ref |

Blob Authorization

Upload: Auth token required. Caller must be the chain creator or the signer of the referenced operation (enables delegated upload).

Download: Auth token required. Chain creator can download directly. Other identities must present a DFOSContentRead VC-JWT credential (issued by the creator) in the X-Credential header.

Conformance Test Suite

The conformance/ directory contains a Go integration test suite that exercises the full relay HTTP surface. It runs against any live relay via the RELAY_URL environment variable.

# Run against a local relay
RELAY_URL=http://localhost:4444 go test -v -count=1 ./conformance/

# Run against a remote relay
RELAY_URL=https://registry.imajin.ai/relay go test -v -count=1 ./conformance/

77 tests covering:

  • Well-known discovery
  • Identity lifecycle (create, update, delete, batch, idempotency, controller key rotation)
  • Content lifecycle (create, update, delete, fork acceptance, DAG logs, deterministic head selection, post-delete rejection, notes, long chains)
  • Content update after auth key rotation, multiple independent chains
  • Operations by CID
  • Beacons (create, replacement, not-found, unknown/deleted identity)
  • Countersignatures (dedup, empty result, multi-witness, self-countersign, non-existent operation)
  • Blob upload/download (CID verification, auth, credential-based access, multi-version, idempotent upload)
  • Delegated content operations (write credentials, delegated blob upload, delegated delete)
  • Credentials (expiry, scope mismatch, type enforcement, deleted issuer behavior)
  • Signature verification (tampered signature, wrong signing key)
  • Auth edge cases (wrong audience, expired token, rotated-out key)
  • Batch processing (3-step dependency sort, content-identity sort, large batch, dedup, mixed valid/invalid, multi-chain)
  • Input validation (malformed JSON, empty operations, invalid JWS)
  • Future timestamp guard (reject identity/content ops >24h ahead)

The conformance suite depends on dfos-protocol-go for protocol operations.

Peering

Relays can replicate operations via three composable behaviors configured per-peer:

  • Gossip-out: push new operations to peers (fire-and-forget)
  • Read-through: fetch from peers on local 404
  • Sync-in: cursor-based log polling from peers
import { createHttpPeerClient, createRelay, MemoryRelayStore } from '@metalabel/dfos-web-relay';

const relay = await createRelay({
  store: new MemoryRelayStore(),
  peerClient: createHttpPeerClient(),
  peers: [{ url: 'https://other-relay.example.com' }],
});

See WEB-RELAY.md for the full peering specification.

Custom Store

Implement the RelayStore interface to use any persistence backend:

import type { RelayStore } from '@metalabel/dfos-web-relay';

MemoryRelayStore is provided as a reference implementation and for testing.

License

MIT