jszip
                                
                                
                                
                                    jszip copied to clipboard
                            
                            
                            
                        Create, read and edit .zip files with Javascript
Could we use [`CompressionStream`](https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream) for better performance? `CompressionStream` supports `gzip`, `deflate` and `deflate-raw` (See Also https://wicg.github.io/compression/#supported-formats). However, [compatibility](https://caniuse.com/mdn-api_compressionstream) may be a problem.
Hi! I am using the latest npm version of jszip. Currently, I am trying to save a new zip file with some data. I even made some test code, so...
Hi there, thanks for the nice lib! I'm working with format simillar to EPUB - it's zip archive which requires mimetype file to be first entry in ZIP archive. Is...
Hi, I want to use jszip in browser with some large file. For now I use ```generateInternalStream``` and write zip data to chrome sandbox file system, then trigger a click...
Hello I met an error while trying exctract zip archive on brightsign using jszip.loadAsync ` const fs = require("fs"); const JSZip = require("jszip"); let jszip = new JSZip(); function unzip(filePath)...
I'm in a -4:00 timezone. When I create an archive then extract it, the extracted files have a correct _created_ time, but their last modified times are _created_ time +...
Hi, i use this mini app [https://stuk.github.io/jszip/documentation/examples/downloader.html](url) in my project and i'm trying to download some mp3 files as zip! my mp3s are uploaded on a host and i use...
jszip is a litte big,I just want to get the decompression function
Hi all, import JSZip from '@salesforce/resourceUrl/jsZip'; let zip1 = new JSZip(); zip1.file("Hello.txt", "testx\n"); zip1.generateAsync({type:"blob"}) .then(function(content) { // see FileSaver.js saveAs(content, "example.zip"); }); Just FYI - We are using this library...
hey, I've been ripping my hair out trying to find a solution to this problem. So pretty much what I'm doing is writing a JSZip source into a website to...