ipfs
Version:
JavaScript implementation of the IPFS specification
21 lines (14 loc) • 374 B
JavaScript
const print = require('../../utils').print
module.exports = {
command: 'get <key>',
describe: 'Given a key, query the routing system for its best value.',
builder: {},
handler ({ getIpfs, key, resolve }) {
resolve((async () => {
const ipfs = await getIpfs()
const value = await ipfs.dht.get(key)
print(value)
})())
}
}