Skip to content

qlqllu/jszip

 
 

Repository files navigation

JSZip

An AMD version of the library by STUK for creating, reading and editing .zip files with JavaScript, with a lovely and simple API.

build with

grunt
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();

location.href = "data:application/zip;base64," + content;
/*
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.

About

Create, read and edit .zip files with Javascript

Resources

License

Stars

Watchers

Forks

Packages

No packages published