forked from snxraven/LinkUp-P2P-Chat
There's something even more interesting called 'peerInfo.topics' lol. So bad it has no good docs and i have to do this stuff to learn more
This commit is contained in:
parent
7751d03b57
commit
d1ee697c84
@ -22,7 +22,9 @@ class Client extends EventEmitter {
|
||||
this.swarm.on('update', () => {
|
||||
console.log(`Peers count: ${this.swarm.connections.size}`);
|
||||
if(this.swarm.connections.size > 0) {
|
||||
console.log([...this.swarm.peers]);
|
||||
let arr = [];
|
||||
[...this.swarm.peers].forEach(peer => arr.push([...peer.topics]));
|
||||
console.log(arr);
|
||||
process.exit(-1);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user