ipfs
Version:
JavaScript implementation of the IPFS specification
20 lines (14 loc) • 378 B
JavaScript
const print = require('../../utils').print
module.exports = {
command: 'peers <topic>',
describe: 'Get all peers subscribed to a topic',
builder: {},
handler (argv) {
argv.resolve((async () => {
const ipfs = await argv.getIpfs()
const peers = await ipfs.pubsub.peers(argv.topic)
peers.forEach(peer => print(peer))
})())
}
}