Home > Enterprise >  How to upload bigger files (200mb ) to blob storage using react and node js (server side)? without s
How to upload bigger files (200mb ) to blob storage using react and node js (server side)? without s

Time:07-19

Earlier we were using aws multipart upload. so approach was simple and straightforward. i have to call three apis from my react frontend.multipart upload/chunk url/complete upload. found this great tutorial on youtube.

I want to upload a large file to azure, not able to find straight forward answer or tutorial.

CodePudding user response:

  • If you want to upload the file to blob storage programmatically then we can do this by dividing the file in chunks and each chunk will have an id and we upload the chunks separately.

  • Here we upload each chunk of data with an id and we also store the id in an list and we upload the list itself too.

Refer the following article by Gavrav Mantri

  • Related