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

@elacity-js/ddrm-reader-backend

v0.2.4

Published

Express-like backend: wallet handshake, ECDH WebSocket channel, CEK recovery, ddrm-decrypt.wasm, render-layer. Plaintext/CEK never leave here.

Readme

@elacity-js/ddrm-reader-backend

The dDRM reader backend — wallet handshake, ECDH WebSocket channel, CEK recovery (Lit Action), ddrm-decrypt.wasm, and the render layer. It can run as a standalone service or be embedded as a library in your own Node app.

Prime directive: the encrypted file bytes and the recovered Content Encryption Key never leave this process. The client only ever receives a decoded render-IR over the ECDH-encrypted channel; plaintext and CEK are zeroized after use, on every path.

Workflow role

client: gen session key → wallet signs challenge ──▶ verify sig, ECDH channel
                                                      Lit Action → CEK            [on-chain gate]
                                                      fetch encrypted bytes (IPFS)
                                                      ddrm-decrypt.wasm: CEK+bytes → plaintext
                                                      DecoderRegistry: plaintext → render-IR
client: render IR  ◀── stream IR frames (encrypted) ── zeroize plaintext + CEK

The server core imports no decoder — content types are injected through a DecoderRegistry. This package's main.ts is the composition root (the only file naming concrete decoders); the published library exposes the building blocks so you can assemble your own.

Install

pnpm add @elacity-js/ddrm-reader-backend

Requires Node ≥ 20, ESM.

Embed as a library

import {
  createServer,
  DecoderRegistry,
  imageDecoder,
  createTextDecoder,
} from "@elacity-js/ddrm-reader-backend";

const server = await createServer({
  port: 8787,
  wasm: {
    wasmUrl: process.env.DDRM_WASM_URL!,     // pinned GitHub release URL / file:// / path
    sha256: process.env.DDRM_WASM_SHA256!,   // verified before instantiation
  },
  decoders: new DecoderRegistry([imageDecoder, createTextDecoder()]),
  chainId: 8453,
  gateways: ["https://ipfs.ela.city/ipfs/"],
  lit: {
    proxyUrl: "https://europe-west1-elacity.cloudfunctions.net/chipotle-proxy",
    decryptCid: "Qm…",
    pkpId: "0x…",
    authority: "0x…",
    chain: "base",
    chainId: 8453,
    rpc: "https://mainnet.base.org",
  },
});
// GET /health  +  WS /channel

Also exported: decryptAndRender (the pipeline), createSessionManager, and loadDdrmRuntime (the wasm loader) for finer-grained composition.

Run as a service

The package's composition root registers every decoder and reads config from env (and two CLI overrides):

# env-driven
DDRM_WASM_URL=… DDRM_WASM_SHA256=… node dist/main.js

# CLI flags take precedence over the env vars
node dist/main.js --ddrm:wasm-url <url> --ddrm:wasm-hash256 <sha256>

See .env.example for the full config surface (PORT, IPFS_GATEWAYS, the LIT_* Lit Action settings, optional self-hosted DDRM_KROKI_URL).

Docker

A multi-stage Dockerfile and a repo-root docker-compose.yml are provided:

docker compose up --build