Skip to content

Instantly share code, notes, and snippets.

@JaehyeonLim
JaehyeonLim / download-multiple-files.js
Created May 28, 2021 15:58 — forked from noelvo/download-multiple-files.js
Download multiple files then compress to one zip file using JSZip & JSZip-utils
var zip = new JSZip();
var count = 0;
var zipFilename = "zipFilename.zip";
var urls = [
'http://image-url-1',
'http://image-url-2',
'http://image-url-3'
];
urls.forEach(function(url){