🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

@hyperswarm/testnet

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperswarm/testnet

Small module to help you spin up a local Hyperswarm testnet

Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
290
-63.48%
Maintainers
3
Weekly downloads
 
Created
Source

@hyperswarm/testnet

Small module to help you spin up a local Hyperswarm testnet.

npm install @hyperswarm/testnet

Use this if you want to use the swarm in tests, etc.

Usage

const createTestnet = require('@hyperswarm/testnet')

const nodes = await createTestnet(10) // create a local testnet with 10 dht nodes
const bootstrap = [{ host: '127.0.0.1', port: nodes[0].address().port }] // the bootstrap address for this testnet

API

const nodes = await createTestnet(size = 10, [options])

Create a new testnet. size is how many DHT nodes you want in it. Options include:

{
  port: preferredLocalPort, // defaults to ANY (0)
  host: preferredLocalHost, // defaults to 127.0.0.1
  teardown // optional async teardown helper ie, t.teardown in brittle/tap etc
}

License

MIT

FAQs

Package last updated on 01 Feb 2022

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