Git Product home page Git Product logo

interface-peer-discovery's Introduction

⛔️ DEPRECATED: interface-peer-discovery is now included in libp2p-interfaces

interface-peer-discovery

Discourse posts

A test suite and interface you can use to implement a Peer Discovery module for libp2p.

The primary goal of this module is to enable developers to pick and/or swap their Peer Discovery modules 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.

Lead Maintainer

Vasco Santos.

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-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-discovery')

const common = {
  setup () {
    return YourDiscovery
  },
  teardown () {
    // Clean up any resources created by setup()
  }
}

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

API

A valid (read: that follows this abstraction) Peer Discovery module must implement the following API:

start the service

  • await discovery.start()

Start the discovery service.

It returns a Promise

stop the service

  • await discovery.stop()

Stop the discovery service.

It returns a Promise

discoverying peers

  • discovery.on('peer', (peerInfo) => {})

Everytime a peer is discovered by a discovery service, it emmits a peer event with the discover peer's PeerInfo.

interface-peer-discovery's People

Contributors

vasco-santos avatar daviddias avatar jacobheun avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.