Cole Morton
Cole Morton
@dignifiedquire I've tried your example but I encounter this issue:  Any ideas would be great, thanks!
@aniket-kumar thanks. Am I right to assume that the text I stored in IPFS (ghi) should be displayed in place of [ipfs content]? Currently, it displays [Object object](exports.IncomingMessage). Is it...
@aniket-kumar thanks, I found the answer: https://github.com/ipfs/js-ipfs-api/issues/55. ``` ipfs.cat('some hash', function (err, stream) { var res = '' stream.on('data', function (chunk) { res += chunk.toString() }) stream.on('error', function (err) {...