There was an error while loading. Please reload this page.
Easily spin up a @dwdht/rpc bootstrap node via the command line.
npm install @dwdht/bootstrap
A dWeb Bootstrap Node is just a normal DHT node, except it doesn't answer any custom queries and will just forward you to other nodes in the network.
dWeb Bootstrap Node
dbootstrap --port=10000
After spinning up a node add it to your @dwdht/rpc bootstrap list
var node = dWebDHT({ bootstrap: ['mydomain.com:10000'] }) var stream = node.query({ command: 'your-command', target: ... })