0.0.1 • Published 6 months ago

mcsp-jszip v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

JSZip

A library for creating, reading and editing .zip files with Javascript, with a lovely and simple API.

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

Test status

0.0.1

6 months ago