Join the p2p swarm for ddatabase, dwebfs, and dappdb feeds. Uses dweb-discovery-swarm under the hood.
npm install dweb-discovery
Run the following code in two different places and they will replicate the contents of the given ARCHIVE_KEY
.
var dwebfs = require('dwebfs')
var swarm = require('dweb-discovery')
var archive = dwebfs('./database', 'ARCHIVE_KEY')
var sw = swarm(archive)
sw.on('connection', function (peer, type) {
console.log('got', peer, type)
console.log('connected to', sw.connections.length, 'peers')
peer.on('close', function () {
console.log('peer disconnected')
})
})
Will use dweb-discovery-swarm
to attempt to connect peers. Uses datland-swarm-defaults
for peer introduction defaults on the server side, which can be overwritten (see below).
The module can also create and join a swarm for a ddatabase feed:
var ddatabase = require('ddatabase')
var swarm = require('dweb-discovery')
var feed = ddatabase('/feed')
var sw = swarm(feed)
The module can also create and join a swarm for a dappdb feed:
var dappdb = require('dappdb')
var swarm = require('dweb-discovery')
var db = dappdb('/feed', 'ARCHIVE_KEY')
db.on('ready', function() {
var sw = swarm(db)
})
A dappdb database must be ready before attempting to connect to the swarm. When download
is enabled the swarm will automatically db.authorize()
all connecting peers.
Join the p2p swarm for the given feed. The return object, sw
, is an event emitter that will emit a peer
event with the peer information when a peer is found.
Get the list of currently active connections.
Exit the swarm
stream
: function, replication stream for connection. Default isarchive.replicate({live, upload, download})
.upload
: bool, upload data to the other peer?download
: bool, download data from the other peer?port
: port for discovery swarmutp
: use utp in discovery swarmtcp
: use tcp in discovery swarm
Defaults from datland-swarm-defaults can also be overwritten:
dns.server
: DNS serverdns.domain
: DNS domaindht.bootstrap
: distributed hash table bootstrapping nodes
ISC