jszip
jszip copied to clipboard
Create, read and edit .zip files with Javascript
I'm using JSZip to access files inside a zip. In that .zip there is one file that I'm looking for and I need it's content. To get the content it...
when i downloading zip file as csv / pdf i have getting CSP error in mozila firefox  do you have any solution of it ?
Hello there, Thanks for your work. I'm writing because I'm having trouble to understand how to use JSZip. Especially the async aspect to it. Reading the upgrade guide (https://stuk.github.io/jszip/documentation/upgrade_guide.html) version...
I'm using React to build a simple input form page with Drop zone by which you can drop and upload a zip file: ``` class InputForm extends Component { constructor()...
I use jszip on https://createapp.dev/ and it works fine on firefox and safari but on chrome I get the error "Google Chrome blocks downloads" and it links to this page...
The tutorial, [How to read a file](https://stuk.github.io/jszip/documentation/howto/read_zip.html), does not elaborate further than opening a .zip file. In the [ZipObject API](https://stuk.github.io/jszip/documentation/api_zipobject.html), it also vaguely mentions `file()` and not much else. Instead,...
I used jszip(3.1.4) with electron/angular4/typescript,but not work. my code ``` let zip = new JSZip(); zip.file(dbFilePath);console.log(zip); zip.generateAsync({type:"blob"}).then(blob=>{ ....... }); ``` error info ``` TypeError: Invalid non-string/buffer chunk ```
when I compress a large number of images,Less pictures won't appear
Hi I run this code. Generating a buffer and and writing it with express as a downloadable file. ```js const buffer = await docx.Packer.toBuffer(doc) console.log(Buffer.isBuffer(buffer)) res.status(200).end(buffer) ``` However the generated...
Is it possible to add some explanation of how jszip work in the documentation? So one can understand how jszip work without diving into the code.