XuelesszzZ 94af2b8e7b 6-30-5 | 1 年之前 | |
---|---|---|
.. | ||
.github | 1 年之前 | |
dist | 1 年之前 | |
lib | 1 年之前 | |
vendor | 1 年之前 | |
.codeclimate.yml | 1 年之前 | |
.editorconfig | 1 年之前 | |
.eslintrc.js | 1 年之前 | |
.jekyll-metadata | 1 年之前 | |
.travis.yml | 1 年之前 | |
CHANGES.md | 1 年之前 | |
LICENSE.markdown | 1 年之前 | |
README.markdown | 1 年之前 | |
deps.js | 1 年之前 | |
graph.svg | 1 年之前 | |
index.d.ts | 1 年之前 | |
package.json | 1 年之前 | |
sponsors.md | 1 年之前 | |
tsconfig.json | 1 年之前 |
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
*/
JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.