How to Upload Large Files

Опубликовано: 05 Ноябрь 2024
на канале: Nsquared Coding
3,053
53

0:00 Intro
1:21 Clone upload file github repo and open with VS Code
2:57 Install packages for client and server side
3:59 Explanation of existing project setup
5:50 Explanation of Database Setup
8:05 Code for uploading a large file
2:01:08 Closing comments
2:01:29 Outro

In this video, I am going to build on top of the upload file tutorial code I have in another video.
Here is the link if you want to follow this setup first uploading a file in general (20mb or less)
   • How to Upload a Small File using Reac...  

I will show you how to upload files larger than 20 megabytes to your server.
We will use a technique to break the file into blocks and upload the blocks to the backend where the file buffer will get appended each time.
We will also implement a progress bar with this feature.

Repo to clone from first tutorial:
https://github.com/npatel023/Upload-File

Code Repo:
https://github.com/npatel023/Upload-L...