2017-02-09 08:57:42 -08:00
2017-01-28 20:28:37 +00:00
2017-01-28 20:28:37 +00:00
2017-02-09 08:57:42 -08:00
2017-01-28 20:28:37 +00:00
2017-01-28 20:28:37 +00:00
2016-12-11 17:00:47 -08:00
2017-02-09 08:57:42 -08:00
2017-01-28 20:28:37 +00:00

interface-peer-discovery

Travis CI Dependency Status js-standard-style

A test suite and interface you can use to implement a peer discovery mechanism.

The primary goal of this module is to enable developers to pick and swap their stream muxing module as they see fit for their application, without having to go through shims or compatibility issues. This module and test suite was heavily inspired by abstract-blob-store.

Publishing a test suite as a module lets multiple modules all ensure compatibility since they use the same test suite.

The API is presented with both Node.js and Go primitives, however, there is not actual limitations for it to be extended for any other language, pushing forward the cross compatibility and interop through diferent stacks.

Modules that implement the interface

Send a PR to add a new one if you happen to find or write one.

Badge

Include this badge in your readme if you make a new module that uses interface-peer-discovery API.

Usage

Node.js

Install interface-peer-discovery as one of the dependencies of your project and as a test file. Then, using mocha (for JavaScript) or a test runner with compatible API, do:

const test = require('interface-peer-discovery')

const common = {
  setup (cb) {
    cb(null, yourMuxer)
  },
  teardown (cb) {
    cb()
  }
}

// use all of the test suits
test(common)

Go

WIP

API

A valid (read: that follows this abstraction) stream muxer, must implement the following API.

start the service

  • JavaScript discovery.start(callback)
  • Go NA

stop the service

  • JavaScript discovery.stop(callback)
  • Go NA

discoverying peers

  • JavaScript discovery.on('peer', function (peerInfo) {})
  • Go NA
Description
No description provided
Readme 3 MiB
Languages
JavaScript 100%