I have files that need to be uploaded ( 90MB - 150MB) from my react application on a flaky network. Should I go with resumablejs ? or write my own chunking logic or is there another way to do this ?
Direct upload from front-end e.g AWS- S3 , Cloudinary or another bucket. :)
jalpesh vadgama
Co-Founder, FutureStack Solution, Full Stack developer having more than 13+ years of experience in web technologies.
You can use node stream to upload it in chunks. This a great tutorial for that.
carlosrymer.com/using-node-streams-to-handle-larg…