forked from snxraven/LinkUp-P2P-Chat
started working on parsing peers & topics they're currently in on swarm update event using 'swarm.peers'
This commit is contained in:
parent
bfe0bafebc
commit
033330fd04
@ -20,7 +20,11 @@ class Client extends EventEmitter {
|
||||
});
|
||||
|
||||
this.swarm.on('update', () => {
|
||||
console.log(`Peers count: ${this.swarm.connections.size}`);
|
||||
console.log(`Peers count: ${this.swarm.connections.size} (${this.swarm.peers.size})`);
|
||||
|
||||
this.swarm.peers.forEach((peer, peerInfo) => {
|
||||
console.log(`Peer ${peer} is in topic(s) ${[...peerInfo.topics].map(topic => topic.toString('hex'))}`);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user