mcsp-jszip

0.0.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i mcsp-jszip

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

97.1 kB

Total Files

28

Last publish

Collaborators

  • shawn0512