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

bitfabric

v0.1.1

Published

Direct pub/sub messaging over Gun + Nostr

Readme

BitFabric NPM Package

Direct pub/sub messaging over Gun + Nostr with built-in UnSEA encryption. BitFabric provides a lightweight, decentralized transport layer for modern web applications.

Install

npm install bitfabric

Usage

Connecting to a Room

In BitFabric, communication is scoped by a roomId. To message between clients, they must join the same room.

  • Free Tier: Use the default bitfabric-global-tier Room ID. No registration required.
  • Custom Rooms: Requires a Validated API Key. You can obtain and manage keys at bitfabric.cc.
import { PubSubFabric } from 'bitfabric';

// Join the global free tier
const fabric = new PubSubFabric({
	roomId: 'bitfabric-global-tier'
});

await fabric.init();

// Subscribe to a topic
fabric.subscribe('general-support', (msg) => {
	console.log(`From ${msg.from}:`, msg.data);
});

// Publish a message
await fabric.publish('general-support', { text: 'Hello BitFabric!' });

Advanced Configuration

BitFabric automatically detects global Gun and Nostr relays, but you can provide your own for dedicated infrastructure.

const fabric = new PubSubFabric({
  roomId: 'your-room-id',
  nostrRelays: [
    'wss://nos.lol',
    'wss://relay.damus.io'
  ],
  gunPeers: [
    'https://relay.peer.ooo/gun'
  ]
});

Note: gunPeers and nostrRelays are optional. The library will auto-detect optimal relays if these lists are omitted.

Security & Validation

The library implements a Validated Key system to ensure network integrity:

  • Strict Enforcement: If a session is initiated without a validated key, all publication attempts to custom topics are automatically remapped to the shared bitfabric-global-tier namespace.
  • End-to-End Encryption: All messages are encrypted with topic-derived AES-GCM keys via UnSEA, ensuring that only participants on that topic can read the contents.

Local Development & Examples

Build the browser-ready bundle:

npm run build:browser

Explore the interactive examples:

npm run examples:serve
  • http://localhost:8080/examples/ (Reference Implementation)
  • http://localhost:8080/examples/browser.html (Advanced Pub/Sub Test)

Verification

The browser.html example includes a live validation panel to test your API keys against the production registry at bitfabric.cc.

Project Structure

  • src/fabric/: Core PubSubFabric and Transport logic.
  • src/nostr/: Nostr client and relay management.
  • dist/: Unified bundles (ESM, CJS, IIFE).

MIT Licensed.