You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
christianesperar 6a6db2ea23 Put dependecy libraries to bower for easy updating 9 years ago
..
dist Put dependecy libraries to bower for easy updating 9 years ago
docs Put dependecy libraries to bower for easy updating 9 years ago
documentation Put dependecy libraries to bower for easy updating 9 years ago
lib Put dependecy libraries to bower for easy updating 9 years ago
vendor Put dependecy libraries to bower for easy updating 9 years ago
.bower.json Put dependecy libraries to bower for easy updating 9 years ago
CHANGES.md Put dependecy libraries to bower for easy updating 9 years ago
Gruntfile.js Put dependecy libraries to bower for easy updating 9 years ago
LICENSE.markdown Put dependecy libraries to bower for easy updating 9 years ago
README.markdown Put dependecy libraries to bower for easy updating 9 years ago
_config.yml Put dependecy libraries to bower for easy updating 9 years ago
bower.json Put dependecy libraries to bower for easy updating 9 years ago
component.json Put dependecy libraries to bower for easy updating 9 years ago
index.html Put dependecy libraries to bower for easy updating 9 years ago
package.json Put dependecy libraries to bower for easy updating 9 years ago

README.markdown

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 http://stuartk.com/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});

var content = zip.generate({type:"blob"});

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