@libp2p/pubsub-peer-discovery
TypeScript icon, indicating that this package has built-in type declarations

10.0.2 • Public • Published

libp2p.io Discuss codecov CI

A libp2p module that uses pubsub for mdns like peer discovery

About

When the discovery module is started by libp2p it subscribes to the discovery pubsub topic(s)

It will immediately broadcast your peer data via pubsub and repeat the broadcast on the configured interval

Security Considerations

It is worth noting that this module does not include any message signing for broadcasts. The reason for this is that libp2p-pubsub supports message signing and enables it by default, which means the message you received has been verified to be from the originator, so we can trust that the peer information we have received is indeed from the peer who owns it. This doesn't mean the peer can't falsify its own records, but this module isn't currently concerned with that scenario.

Requirements

This module MUST be used on a libp2p node that is running Pubsub. If Pubsub does not exist, or is not running, this module will not work.

To run a PubSub service, include a pubsub implementation in your services map such as @chainsafe/libp2p-gossipsub.

For more information see the docs on customizing libp2p.

Example - Usage in js-libp2p

See the js-libp2p configuration docs for how to include this module as a peer discovery module in js-libp2p.

If you are only interested in listening to the global pubsub topic the minimal configuration for using this with libp2p is:

import { createLibp2p } from 'libp2p'
import { websockets } from '@libp2p/websockets'
import { yamux } from '@chainsafe/libp2p-yamux'
import { noise } from '@chainsafe/libp2p-noise'
import { gossipsub } from '@chainsafe/libp2p-gossipsub'
import { pubsubPeerDiscovery } from '@libp2p/pubsub-peer-discovery'
import { identify } from 'libp2p/identify'

const node = await createLibp2p({
  transports: [
    websockets()
  ], // Any libp2p transport(s) can be used
  streamMuxers: [
    yamux()
  ],
  connectionEncryption: [
    noise()
  ],
  peerDiscovery: [
    pubsubPeerDiscovery()
  ],
  services: {
    pubsub: gossipsub(),
    identify: identify()
  }
})

Example - Customizing Pubsub Peer Discovery

There are a few options you can use to customize Pubsub Peer Discovery. You can see the detailed options below.

// ... Other imports from above
import PubSubPeerDiscovery from '@libp2p/pubsub-peer-discovery'

// Custom topics
const topics = [
  `myApp._peer-discovery._p2p._pubsub`, // It's recommended but not required to extend the global space
  '_peer-discovery._p2p._pubsub' // Include if you want to participate in the global space
]

const node = await createLibp2p({
  // ...
  peerDiscovery: [
    pubsubPeerDiscovery({
      interval: 10000,
      topics: topics, // defaults to ['_peer-discovery._p2p._pubsub']
      listenOnly: false
    })
  ]
})

Options

Name Type Description
interval number How often (in ms), after initial broadcast, your node should broadcast your peer data. Default (10000ms)
topics Array<string> An Array of topic strings. If set, the default topic will not be used and must be included explicitly here
listenOnly boolean If true it will not broadcast peer data. Dont set this unless you have a specific reason to. Default (false)

Default Topic

The default pubsub topic the module subscribes to is _peer-discovery._p2p._pubsub, which is also set on PubsubPeerDiscovery.TOPIC.

Install

$ npm i @libp2p/pubsub-peer-discovery

Browser <script> tag

Loading this module through a script tag will make it's exports available as Libp2pPubsubPeerDiscovery in the global namespace.

<script src="https://unpkg.com/@libp2p/pubsub-peer-discovery/dist/index.min.js"></script>

API Docs

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Package Sidebar

Install

npm i @libp2p/pubsub-peer-discovery

Weekly Downloads

1,266

Version

10.0.2

License

Apache-2.0 OR MIT

Unpacked Size

97.9 kB

Total Files

16

Last publish

Collaborators

  • jacobheun
  • npm-service-account-libp2p
  • alanshaw
  • vascosantos
  • achingbrain
  • daviddias