Bhavin Verma
Bhavin Verma

Reputation: 45

How to upload bigger files (200mb+) to blob storage using react and node js (server side)? without saving file on server

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.

Upvotes: 0

Views: 2918

Answers (1)

Mohit Ganorkar
Mohit Ganorkar

Reputation: 2069

  • 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

Upvotes: 1

Related Questions