Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

discovery-swarm

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

discovery-swarm

A network swarm that uses discovery-channel to find peers

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17
decreased by-88.36%
Maintainers
1
Weekly downloads
 
Created
Source

discovery-swarm

A network swarm that uses discovery-channel to find peers

npm install discovery-swarm

Usage

var swarm = require('discovery-swarm')

var sw = swarm()

sw.listen(1000)
sw.add('hello') // a name

sw.on('connection', function (connection) {
  console.log('found peer')
})

API

var sw = swarm()

Create a new swarm

sw.add(name)

Join a swarm

sw.remove(name)

Leave a swarm

sw.peersQueued

Number of peers discovered but not connected to yet

sw.peersConnecting

Number of peers we are trying to connect to

sw.peersConnected

Number of peers we are actively connected to. Same as sw.connections.length.

sw.connections

List of active connections to other peers

sw.on('connection', connection)

Emitted when you connect to another peer

sw.listen(port)

Listen on a specific port. Should be called before add

License

MIT

FAQs

Package last updated on 08 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc