Skip to content

comnoco/pizzip

This branch is 21 commits behind open-xml-templating/pizzip:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

51f8804 · Jul 27, 2023
Sep 18, 2012
Aug 6, 2021
Sep 20, 2022
Sep 19, 2022
Sep 19, 2022
Jul 17, 2019
Jul 24, 2019
Jul 17, 2019
Jul 17, 2019
Sep 19, 2022
Jul 19, 2019
Oct 11, 2013
Nov 19, 2013
Jul 30, 2015
Jul 17, 2019
Jan 23, 2020
Dec 12, 2022
Jul 27, 2023
Jul 12, 2019
Jun 14, 2019
Jun 14, 2019
Jul 27, 2023
Jul 27, 2023
Jul 12, 2019
Jul 17, 2019

Repository files navigation

PizZip

PizZip is a fork of JSZip version 2.x, because we want a synchronous Zip library.

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

var zip = new PizZip();

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

PizZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.

About

A synchronous zip module

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 94.1%
  • HTML 2.8%
  • CSS 1.9%
  • TypeScript 1.2%