I am implementing Kubo RPC API in Node JS to upload files to IPFS, Uploads works, but when I try to get content of file using ifps.cat(CID) it returns may be plain text, stream or chunks (may be encoded, I don't know which type of encoding is it.).
My question is how do I convert this data to a readable image or pdf, below code create image which is unreadable or pdf which is empty.
node JS Code:
axios.post('http://127.0.0.1:5001/api/v0/cat?arg=QmYjChbAEthEYz7qiR8XHHFS9uRZcMsfZVukpAcCF4q6xw')
.then(async function (response) {
console.log(response.data);
fs.writeFile("./myfile.png",response.data, (err) => {
if (err) throw err;
res.status(200).send("files saved.");
});
})
.catch(function (error) {
console.log(error);
res.status(500).send(error);
});


ipfs.get, you'd wantipfs.cat.ipfs.catreturns the file exactly as it was when it was added to IPFS, without any encoding. If there's encoding, it would have had to have been encoded when it was added. If I doipfs add myimage.pngthen doipfs cat cidofmyimage > myimage2.pngthenmyimage.pngandmyimage2.pngwill be identical.