I am able to upload files to Azure blob storage via Node/Express without issue, but have found very minimal documentation/full examples of how to download a file. I found this on the tutorial page, but did not have any luck:
blobSvc.getBlobToStream('mycontainer', 'myblob', fs.createWriteStream('output.txt'), function(error, result, response){
if(!error){
// blob retrieved
}
});
Has anyone else used node.js/express to download files from Azure blob storage? Did you use Azure, or another method (ex. Request). Could you share how to get a file from Azure and stream it to a folder?