XuelesszzZ 94af2b8e7b 6-30-5 | vor 1 Jahr | |
---|---|---|
.. | ||
.github | vor 1 Jahr | |
dist | vor 1 Jahr | |
lib | vor 1 Jahr | |
vendor | vor 1 Jahr | |
.codeclimate.yml | vor 1 Jahr | |
.editorconfig | vor 1 Jahr | |
.eslintrc.js | vor 1 Jahr | |
.jekyll-metadata | vor 1 Jahr | |
.travis.yml | vor 1 Jahr | |
CHANGES.md | vor 1 Jahr | |
LICENSE.markdown | vor 1 Jahr | |
README.markdown | vor 1 Jahr | |
deps.js | vor 1 Jahr | |
graph.svg | vor 1 Jahr | |
index.d.ts | vor 1 Jahr | |
package.json | vor 1 Jahr | |
sponsors.md | vor 1 Jahr | |
tsconfig.json | vor 1 Jahr |
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.