ken_nogi/NodeJS/#ANDPAD/node_modules/jszip
Kenichiro NOGI 88a402ce0f up
2026-07-10 18:13:30 +09:00
..
.github/workflows up 2026-07-10 18:13:30 +09:00
dist up 2026-07-10 18:13:30 +09:00
lib up 2026-07-10 18:13:30 +09:00
vendor up 2026-07-10 18:13:30 +09:00
.codeclimate.yml up 2026-07-10 18:13:30 +09:00
.editorconfig up 2026-07-10 18:13:30 +09:00
.eslintrc.js up 2026-07-10 18:13:30 +09:00
.jekyll-metadata up 2026-07-10 18:13:30 +09:00
.travis.yml up 2026-07-10 18:13:30 +09:00
CHANGES.md up 2026-07-10 18:13:30 +09:00
deps.js up 2026-07-10 18:13:30 +09:00
graph.svg up 2026-07-10 18:13:30 +09:00
index.d.ts up 2026-07-10 18:13:30 +09:00
LICENSE.markdown up 2026-07-10 18:13:30 +09:00
package.json up 2026-07-10 18:13:30 +09:00
README.markdown up 2026-07-10 18:13:30 +09:00
sponsors.md up 2026-07-10 18:13:30 +09:00
tsconfig.json up 2026-07-10 18:13:30 +09: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.