mini.css/node_modules/jszip
Angelos Chalaris 11e48409bb Started working on Gluon core
Core module has been initialized, as well as a default flavor. Minor changes (read DEVLOG), moved things around, cleaned up some things and built some of the basic features.
2018-05-28 12:29:34 +03:00
..
dist Started working on Gluon core 2018-05-28 12:29:34 +03:00
lib Started working on Gluon core 2018-05-28 12:29:34 +03:00
vendor Started working on Gluon core 2018-05-28 12:29:34 +03:00
.codeclimate.yml Started working on Gluon core 2018-05-28 12:29:34 +03:00
.editorconfig Started working on Gluon core 2018-05-28 12:29:34 +03:00
.jshintignore Started working on Gluon core 2018-05-28 12:29:34 +03:00
.jshintrc Started working on Gluon core 2018-05-28 12:29:34 +03:00
.travis.yml Started working on Gluon core 2018-05-28 12:29:34 +03:00
CHANGES.md Started working on Gluon core 2018-05-28 12:29:34 +03:00
LICENSE.markdown Started working on Gluon core 2018-05-28 12:29:34 +03:00
package.json Started working on Gluon core 2018-05-28 12:29:34 +03:00
README.markdown Started working on Gluon core 2018-05-28 12:29:34 +03:00

JSZip Build Status Code Climate

Selenium Test Status

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.

var zip = new JSZip();

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

var 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.