How to download a 30GB file through JavaScript

95 Views Asked by At

I have a URL which is a 30GB of file, I want to create a Javascript function which will download the file in user system through chuncks by chunck (1GB). In simple term something like, 1GB of data gets downloaded first and stored in the user system in download folder and then second 1GB writes to the same file and so on.

I have below code but it uses browser memory to store all the chuncks before initiating a download.

document.addEventListener("DOMContentLoaded", function () {
            function downloadFileWithRange(url, sliceNumber) {
                const sliceSize = 1 * 1024 * 1024 * 1024;

                const start = (sliceNumber - 1) * sliceSize;
                const end = sliceNumber * sliceSize - 1;

                const requestOptions = {
                    headers: {
                        'Range': `bytes=${start}-${end}`
                    }
                };

                fetch(url, requestOptions)
                    .then(response => {
                        if (response.status === 206) {
                            return response.arrayBuffer();
                        } else {
                            console.error('Failed to download file. Status code:', response.status);
                        }
                    })
                    .then(data => {
                        console.log(`Downloaded slice ${sliceNumber} data:`, data);
                        chunks.push(new Blob([data]));
                    })
                    .catch(error => {
                        console.error('Error:', error);
                    });
            }

            document.getElementById("downloadLink1").addEventListener("click", function (event) {
                event.preventDefault();
                for (let i = 1; i <= 30; i++) {
                    downloadFileWithRange("URL", i);
                }
            });

Can this is doable without using node.js ?

I am expecting a solution which can download this large file without crashing the browser.

0

There are 0 best solutions below