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

@wirelineio/framework

v0.3.6

Published

Application Framework.

Downloads

4

Readme

framework

Install

yarn add @wirelineio/framework

Usage

Framework is an abstraction to provide access to messages, connect to a feed and exchange data over the megafeed implementation. It abstract the model (called views) for a better interaction with the DAT layer.

In order to exchange message a peer has to connect to a swarm first where it publishes peer information as the discoveryKey. We have to distinct 2 different types of peers: bots and non-bots (or just peers).

We need the distinction since a bot will participate in many different conversations or "parties" at the same time, which requires the bot to accept a bigger number of connections and handle parties in a slightly different way.

The concept of a "party" comes from megafeed. The important idea here is to see the party as a way to communicate a reduced set of feeds.

Peer Example

We need to create a Framework instance where we can establish a set of configurations that has to be shared among other peers so they can "see" each other:

  • Signal Server: In order to be able to see other peers all of them have to be in the same signal server (hub).
  • PartyKey: A partyKey is important to be able to read or sync messages. One peer can specify a partyKey where it will publish all feeds. Then in order to get another peer to receive those messages and share its own, both have to be in the same party. This can be done by setting the same partyKey in the configuration or using a setParty method.

import { Framework } from '@wirelineio/framework';

// Create and initialize peer1
const peer1 = Framework({
  keys: {
    hub: 'https://my-signal-server.com',
    partyKey: Buffer.form(PARTY_KEY_1, 'hex'),
    name: 'Peer1'
  }
})

await peer1.initialize();

// Create and initialize peer2
const peer2 = Framework({
  keys: {
    hub: 'https://my-signal-server.com',
    partyKey: Buffer.form(PARTY_KEY_2, 'hex'),
    name: 'Peer2'
  }
})

await peer2.initialize();

// Make peer2 join party from peer1
peer2.partyManager.setParty({ key: PARTY_KEY_1 });

Since both peers are in the same party they can already exchange messages.

Bots

As mentioned before, the bots requires an extra configuration and they have some different rules:

  • A bot must specify the isBot: true in configuration.
  • Since a bot is a usually a passive listener on others parties, we don't need to configure the partyKey.
  • A bot joins a party when the peer invites the bot. We need to know the bot PK in order to do that.
  • A bot can talk to another bot only if both of them have the same partyKey.
  • If partyKey is specified it must not be the same as the bot PK.
// Bot.js

const bot = Framework({
  keys: {
    isBot: true
    hub: 'https://my-signal-server.com',    
    name: 'bot-name',
    keys: {
      publicKey: Buffer.from(BOT_PUBLIC_KEY, 'hex'),
      secretKey: Buffer.from(BOT_SECRET_KEY, 'hex'),
    }
  }
});

await bot.initialize();

// Note: Here `keys` are not necessary, it just a convinience to know the bot PK to connect from the peer.
// The bot PK can be retrieved with `bot.mega.key`

Now from the peer code:


// Initialization of peer1 ...

// This will send a message to the bot with the peer1 currentPartyKey so the bot can join the party.
peer1.connectToBot({ key: BOT_PUBLIC_KEY });

API

Framework(conf)

Construct a new Framework instance. Sets configuration for kappa, megafeed and swarm.

  new Framework(conf)

  /**
   * Framework core. Creates kappa views and configs swarming.
   *
   * @param conf.name {String} Name. If provided, profile will be set on contacts view. Optional.
   * @param conf.storage {Function} A random-access-* implementation for storage.
   * @param conf.keys {Object}
   * @param conf.key.publicKey {Buffer}
   * @param conf.key.secretKey {Buffer}
   * @param conf.hub {String} Signalhub url for swarm connection.
   * @param conf.isBot {Boolean} Sefines if framework is for a bot.
   * @param conf.partyKey {Buffer} Sefines initial party key.
   * @param conf.maxPeers {Number} Maximum connections on swarm. Optional. Defaults: If isBot is true it is set to 64 otherwise 2.
   */

async initialize()

Await for connection in swarm, setProfile and other async operations that have to be done before ready state.

  const framework = new Framework(config);
  await framework.initialize();

partyManager

async connectToBot(opts)

Send the currentParty information to a bot in the same swarm.

await framework.partyManager.connectToBot(opts)

  /**
   * @param opts {Object}
   * @param opts.key {Buffer} Bot PublicKey.
   */

async setParty(opts)

Switches currentParty.

await framework.partyManager.setParty(opts);

  /**
   * @param opts {Object}
   * @param opts.key {Buffer} Party Key.
   */

currentPartyKey

Returns the current partyKey.

framework.partyManager.currentPartyKey

Views

The api contains the following views (kappa):

  • contacts(core)

Core Views

Core views represent the main data model.

contacts

The contacts view gives you access to handle profile and contacts operations.

contacts.getProfile()

async framework.kappa.api['contacts'].getProfile({ key })

contacts.setProfile()

async framework.kappa.api['contacts'].setProfile({ key, data })

contacts.getContacts()

async framework.kappa.api['contacts'].getContacts()

ViewTypes

  • LogsView: Logs view are append-only log items.
  • DocumentsView: A CRDT document represents changes that creates a single item by applying each change as a patch for a final item content.

view api

The documents view provides operations for handling collaborative text documents.

create(opts)

async framework.kappa.api[`${viewName}`].create({ type, title = 'Untitled', partyKey })

Creates a new document.

  • type: This is the pad type. For creating a text document the type should be set to document. Note that this is driven from the pad code so it cannot be set by default in framework-core.
  • partyKey: Optional. If not provided it will use the framework.currentPartyKey.

getById(itemId)

async framework.kappa.api[`${viewName}`].getById(itemId)

Retrieves a document by itemId.

appendChange(itemId, changes)

async framework.kappa.api[`${viewName}`].appendChange(itemId, changes)

Append a new change message on the document with itemId.

getChanges(itemId, opts)

async framework.kappa.api[`${viewName}`].getChanges(itemId, { reverse, lastChange })

onChange(itemId, cb)

async framework.kappa.api[`${viewName}`].onChange(itemId, cb)

TBC