Cole Morton

Results 3 comments of Cole Morton

@dignifiedquire I've tried your example but I encounter this issue: ![screen shot 2016-07-17 at 15 51 58](https://cloud.githubusercontent.com/assets/2062034/16900998/a7f6d1b6-4c36-11e6-8e69-0b7b0d4cd039.png) 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) {...