/peer-star-app

Peer-Star App support

Primary LanguageJavaScriptMIT LicenseMIT

peer-star-app

Peer-Star App support for real-time collaborative DApps built on top of IPFS

made by Protocol Labs

Build Status

Documentation

Install

$ npm install peer-star-app

Import

const PeerStar = require('peer-star-app')

API

Create app

const app = PeerStar('app name', options)

app.on('error', (err) => {
  console.error('error in app:', err)
})

Options (are not required):

  • ipfs: object with:
    • repo: IPFS repo path or repo object
    • swarm: ipfs swarm addresses (array of string)
  • samplingIntervalMS: (defaults to 1000): membership gossip frequency heuristic sampling interval
  • targetGlobalMembershipGossipFrequencyMS: (defaults to 1000): target global membership gossip frequency, in ms.
  • urgencyFrequencyMultiplier: (defaults to 10): urgency multiplier when someone is wrong about membership
  • transport: optional object containing:
    • maxThrottleDelayMS: the maximum delay betweeen discovering a new peer and quering it to see whether they're interested in the app.

Start app

await app.start()

js-IPFS node

A peer-star app comes with a js-ipfs node. You can access through app.ipfs. Example:

console.log(await app.ipfs.id())

Guess peer count

app.peerCountGuess() // returns integer Number >= 0

Keys

Keys can be used to collaborate. If provided, they authenticate changes to the collaboration and encrypts them for transmission and storage. You can either create new keys or parse them from a string.

await Keys.generate()

const Keys = require('peer-star-app').keys

const keys = await Keys.generate()

Keys.uriEncode

Encode keys into a URI-acceptable string:

const Keys = require('peer-star-app').keys
const keys = await Keys.generate()

const string = Keys.uriEncode(keys)

Keys.uriEncodeReadOnly

Encode the read-only key into a URI-acceptable string:

const Keys = require('peer-star-app').keys
const keys = await Keys.generate()

const string = Keys.uriEncodeReadOnly(keys)

await Keys.uriDecode

Decode keys from a string:

const Keys = require('peer-star-app').keys
const keys = await Keys.generate()

const string = Keys.uriEncode(keys)

const decodedKeys = await Keys.uriDecode(string)

Read-only keys

You can distribute a read-only key by using PeerStar.keys.uriEncodeReadOnly(keys):

const Keys = require('peer-star-app').keys
const keys = await Keys.generate()

const string = Keys.uriEncodeReadOnly(keys)

Generate symmetrical key

const Keys = require('peer-star-app').keys

// options are optiona. defaults to:
const options = {
  keyLength: 32,
  ivLength: 16
}
const keys = await Keys.generateSymmetrical(options)

key.raw // contains raw key (buffer)
key.key // contains AES key

Returns (asynchronously) a key of type AES, as defined in libp2p-crypto.

Create collaboration

const collaboration = await app.collaborate(collaborationName, type, options)

// stop collaboration
await collaboration.stop()

Arguments:

  • collaborationName: string: should uniquely identify this collaboration in the whole world
  • type: a string, identifying which type of CRDT should be used. Use this reference table in the delta-crdts package.
  • options: object, not required. Can contain the keys:
    • keys: keys, generated or parsed from URL. See keys secion
    • maxDeltaRetention: number: maximum number of retained deltas. Defaults to 1000.
    • deltaTrimTimeoutMS: number: after a delta was added to the store, the time it waits before trying to trim the deltas.
    • debounceResetConnectionsMS: (defaults to 1000): debounce membership changes before resetting connections.

Create your own collaboration type

You can create your own collaboration type by registering it:

// useless type here:
const Zero = (id) => ({
  initial: () => 0,
  join: (s1, s2) => 0,
  value: (state) => state
})

PeerStar.collaborationTypes.define('zero', Zero)

Peer count estimate

Returns estimate of peers in app.

app.peerCountEstimate()

Sub-collaborations

You can create sub-collaborations to a given "root" collaboration, with it's separate CRDT type, but that is causally consistent with the root CRDT. Here's how:

const subCollaboration = await collaboration.sub('name', 'type')

A sub-collaboration has the same API as a collaboration.

Collaboration gossip

You can have collaboration-level private gossip like this:

const gossip = await collaboration.gossip('gossip name')

gossip.on('message', (message, fromPeer) => {
  console.log('got message from peer ${fromPeer}: ${JSON.stringify(message)}')
})

const message = ['any', 'JSON', 'object']

gossip.broadcast(message)

App Events

app.emit('error', err)

app.emit('peer connected', (peerInfo) => {})

When a peer connects.

app.emit('outbound peer connected', (peerInfo) => {})

When a push connection is created.

app.emit('inbound peer connected', (peerInfo) => {})

When a pull connection is created.

app.emit('peer disconnected', (peerInfo) => {})

When a peer disconnects.

app.emit('outbound peer disconnected', (peerInfo) => {})

When a push connection ends.

app.emit('inbound peer disconnected', (peerInfo) => {})

When a pull connection ends.

Collaboration

collaboration.peers()

Returns the peers of the collaboration, a Set of peer ids (string).

Array.from(collaboration.peers()).forEach((peer) => {
  console.log('member peer: %s', peer)
})

collaboration.outboundConnectionCount()

Returns the number of peers this peer is pushing data to.

collaboration.inboundConnectionCount()

Returns the number of peers this peer is pulling data from.

Events:

"membership changed" (peers: Set<peer id>)

collaboration.on('membership changed', (peers) => {
  Array.from(peers).forEach((peer) => {
    console.log('member peer: %s', peer)
  })
})

"state changed"

Emitted every time the state changes. Has one argument, a boolean, saying true if and only if the change came from this peer. This is emitted immediately after a change is applied on the CRDT state.

collaboration.on('state changed', (fromSelf) => {
  console.log('state changed. New collaboration value is: %j', collaboration.shared.value())
})

NOTE: When receiving remote updates, this event may fire many times per second. You may want to use a debounce or a throttle mechanism when handling this event. If you do that, beware that the state in your UI may be out of sync with the state of the CRDT.

collaboration.shared

The shared data in this collaboration.

shared.value()

Returns the CRDT view value.

shared mutators

Each shared document has document-specific mutators. See the delta-crdts documentation for these.

Example:

collaboration.shared.push('some element')

Stop collaboration

await collaboration.stop()

Stop app

await app.stop()

Run example app

Clone this repo.

$ cd peer-star-app
$ cd examples/react-app
$ npm install

In a different window, on the same dir, start the rendezvous server:

$ npm run start:rv

In a different window, on the same dir, run the app server:

$ npm start

Open http://localhost:3000 and test the app.

Tests

Clone this repo and run:

$ npm install
$ npm test

Debug

You can activate the debugging logs by manipulating the DEBUG environment variable. Example:

$ DEBUG=peer-star:* npm test

For file-specific DEBUG values, see the source code and look for usages of the debug package.

Contribute

Peer-star app and the IPFS implementation in JavaScript is a work in progress. As such, there's a few things you can do right now to help out:

  • Check out existing issues. This would be especially useful for modules in active development. Some knowledge of IPFS may be required, as well as the infrastructure behind it - for instance, you may need to read up on p2p and more complex operations like muxing to be able to help technically.
  • Perform code reviews. More eyes will help (a) speed the project along, (b) ensure quality, and (c) reduce possible future bugs.
  • Add tests. There can never be enough tests.

Want to hack on peer-star-app?

License

MIT