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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hyperpubsub

v1.2.4

Published

Hypercore Protocol Extension for simple PubSub

Downloads

7

Readme

hyperpubsub

Hypercore Protocol Extension for a simple PubSub system. Works on the top any hyperspace swarm connection. A peer can notify others that it listens to a specific topic, these then can send them messages regarding that topic. In addition to that, the peer announces itself to listen to a topic on the hyperswarm DHT, so the PubSub system also works without any existing connection.

It is designed to be used with a hyperspace RPC client, but might also work directly with a corestore networker (untested).

Install

npm install hyperpubsub

API

The message format is binary, so if objects are sent they have to be encoded/decoded manually.

const {PubSub} = require('hyperpubsub').debug() // call debug() if you want debugging messages printed to the cli

// ... set up or connect to a hyperspace instanced
// client = a hyperspace client
// see https://hypercore-protocol.org/guides/getting-started/hyperspace/

const pubsub = new PubSub(client.network, {application: 'example app', onError: <somehowhandlethaterror>})
pubsub.join('some topic') // returns Promise<string> of the discovery key used for the dht
pubsub.sub('some topic', (msg, app) => console.log(msg.toString('utf-8'))) // messages are binary blobs
pubsub.pub('some topic', Buffer.from('hello', 'utf-8')) // sends message to all known listening peers
pubsub.unsub('some topic') // no longer interested
pubsub.close() // cleanup

basic.js is a minimalistic demonstrator that uses the hyperspace simulator for tests. If started twice you can see it exchanging "hello" messages.

Private Messges

As of 1.2.0 hyperpubsub also supports private, encrypted messages (utilizing libsodium sealed boxes). The (hash of the) public key of the receiver serves as the pubsub topic, the rest is very similar to "normal" pubsub.

// the key pair has to be set up using libsodium
const sodium = require('sodium-universal')
const publicKey = Buffer.alloc(sodium.crypto_box_PUBLICKEYBYTES)
const secretKey = Buffer.alloc(sodium.crypto_box_SECRETKEYBYTES)
sodium.crypto_box_keypair(publicKey, secretKey)

// subscribe to private messages
pubsub.subPrivateMsg(publicKey, secretKey, (msg) => {
 // process message
})

// -----------------------------------------
// ON AN OTHER DEVICE: send private messages
await pubsub.joinPublicKey(publicKey)
pubsub.pubPrivateMsg(publicKey, Buffer.from('hello', 'utf-8'))

private.js is a minimalistic demonstrator for private messages (uses the simulator as well). Start it once, copy the public key that's printed to the cli and pass it as argument to a second instance.

TODO

  • [ ] PEX is WIP
    • [ ] Hyperspace integration
  • [ ] Denial-of-Service and spam protections