template-project/node_modules/jszip
2025-05-30 18:13:30 +08:00
..
.github/workflows Initial commit 2025-05-30 18:13:30 +08:00
dist Initial commit 2025-05-30 18:13:30 +08:00
lib Initial commit 2025-05-30 18:13:30 +08:00
vendor Initial commit 2025-05-30 18:13:30 +08:00
.codeclimate.yml Initial commit 2025-05-30 18:13:30 +08:00
.editorconfig Initial commit 2025-05-30 18:13:30 +08:00
.eslintrc.js Initial commit 2025-05-30 18:13:30 +08:00
.jekyll-metadata Initial commit 2025-05-30 18:13:30 +08:00
.travis.yml Initial commit 2025-05-30 18:13:30 +08:00
CHANGES.md Initial commit 2025-05-30 18:13:30 +08:00
deps.js Initial commit 2025-05-30 18:13:30 +08:00
graph.svg Initial commit 2025-05-30 18:13:30 +08:00
index.d.ts Initial commit 2025-05-30 18:13:30 +08:00
LICENSE.markdown Initial commit 2025-05-30 18:13:30 +08:00
package.json Initial commit 2025-05-30 18:13:30 +08:00
README.markdown Initial commit 2025-05-30 18:13:30 +08:00
sponsors.md Initial commit 2025-05-30 18:13:30 +08:00
tsconfig.json Initial commit 2025-05-30 18:13:30 +08:00

JSZip

A library for creating, reading and editing .zip files with JavaScript, with a lovely and simple API.

See https://stuk.github.io/jszip for all the documentation.

const zip = new JSZip();

zip.file("Hello.txt", "Hello World\n");

const img = zip.folder("images");
img.file("smile.gif", imgData, {base64: true});

zip.generateAsync({type:"blob"}).then(function(content) {
    // see FileSaver.js
    saveAs(content, "example.zip");
});

/*
Results in a zip containing
Hello.txt
images/
    smile.gif
*/

License

JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.