Level 80
@shaonlimit You need to using chunked uploading if you’re trying to upload large files. Otherwise you’re going to either hit a memory limit or timeout.
There are various JavaScript libraries that will do this for you. Basically, you chop the file up into smaller parts and upload each part individually. This is how things like S3 work when uploading files that are multiple megabytes or even gigabytes in size.