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

@openvole/volenet

v1.1.1

Published

VoleNet — signed, post-quantum-sealed messaging between agents and people across machines, with blind relay hubs

Readme

@openvole/volenet

Signed, post-quantum-sealed messaging between agents and people across machines they do not share. A library, not a framework: it runs a node, it does not run an agent.

npm install @openvole/volenet
import { VoleNetManager, createEventBus } from '@openvole/volenet'

const bus = createEventBus()
// `room` is present when this arrived as a room post rather than a private message.
bus.on('volenet:chat', (m) => console.log(`${m.room ?? 'dm'} ${m.fromName}: ${m.text}`))

const net = new VoleNetManager(
  { enabled: true, instanceName: 'my-node', port: 9700, keyPath: './data/net/vole_key' },
  './data',
)
await net.start(undefined, bus)

await net.sendChat('some-peer', 'hello')

// A room, through a hub that reads none of it (§7c).
await net.roomCommand('my-hub', 'room:create', { name: 'valley' })
const [room] = net.getRooms()
await net.postToRoom(room.room, 'morning')  // → { sent, held, skipped }

An identity is generated on first start if keyPath has none. generateKeyPair, trustPeer and the rest are exported for anything that manages keys itself.

What it gives you

  • Identity that is a keypair, not an account. Hybrid Ed25519 + ML-DSA-65 signatures, so a message is provably from a peer and nobody can speak as them.
  • Envelopes sealed to the recipient. Hybrid X25519 + ML-KEM-768, HKDF over both shared secrets, AAD bound to the routing — confidentiality holds unless both KEMs break, which is what closes the harvest-now-decrypt-later gap. Falls back to X25519-only for older peers, with the scheme bound into the KDF so a downgrade fails the tag instead of weakening the envelope.
  • Blind relay hubs. A hub forwards ciphertext for peers that cannot dial each other and keeps none of it. An undelivered message waits in the sender's outbox; the hub keeps a notice — who tried, how often, when — and nothing more.
  • Rooms. Several members in one conversation, each post sealed once per member — so there is no room key, and removing somebody stops them reading by construction rather than by a rotation anybody has to remember. Capped at 64 members, which is where sealing per member stops making sense; it refuses there rather than getting quietly slow.
  • Consent. Nothing is trusted because it connected. A peer is paired directly, or consented to through a hub, before it can say anything to you.
  • Intermittent peers as a supported shape. Senders hold what they could not deliver and flush on reconnect, so a phone or an editor session that comes and goes loses nothing.

What it does not assume about you

Three things a host may provide, and none of them are required:

| you pass | you get | without it | |---|---|---| | an EventSink to start() | every event this node raises | it runs silently; createEventBus() is there if you have no bus | | a ToolProvider to start() | tools shareable with trusted peers | no tool sharing | | persistPeer in the config | peers learned at runtime survive a restart | they are live-only | | persistPeerEntry in the config | a peer named by identity survives too — the only way to record one with no address | live-only |

setLoggerFactory() redirects the library's logging into your own logger. Left alone it writes to VOLE_LOG_FILE when that is set, and is silent otherwise.

Who uses it

  • openvole — the agent framework this was extracted from. Agents on a mesh, tool sharing, brain delegation.
  • @openvole/volenet-mcp — an MCP server that gives a Claude Code session its own identity on the mesh.
  • The VoleNet phone app, whose Rust client speaks this protocol and is tested against this implementation in both directions.

Protocol

The wire format is documented from a client's point of view in PROTOCOL.md. Section numbers there are referenced from the Rust client's source.

Test

pnpm -C src/volenet test

213 tests, including end-to-end pairing, relay with consent, held messages, rooms across a three-node mesh, file transfer, and byte-level interop with the Rust client.