js-xlsx not support jszip 3.x
See original GitHub issueIn https://github.com/SheetJS/js-xlsx/blob/master/xlsx.js#L1920
, there used the global JsZip lib at first. In fact, the xlsx.js
all packed the jszip 2.x, so I think use global jszip is unnecessary.
In my project, I used the JsZip as global variable, so the xlsx has a compatibility question.(not support jszip 3.x)
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
0 - Stack Overflow
You use JSZip v2 (needed by js-xlsx) which doesn't support Blob inputs. ... Here is the solution I found using JSZip, XLSX and...
Read more >JSZip v3.1.3 not allowing to export to excel using wjcGridXlsx ...
It seems that Wijmo's export to xlxs required JSZip v2.5.0 ... Could we use the JSZip 3.1.3 version to support the export functionalities?...
Read more >js-xlsx - Bountysource
I am trying to export an json object to xlsx. First I try the package sheetjs, everything is good but it does not...
Read more >js-xlsx-jszip-concat - npm Package Health Analysis - Snyk
All security vulnerabilities belong to production dependencies of direct and indirect packages. License: Apache-2.0. Security Policy: No.
Read more >Parse and Read Excel Files (xls/xlsx) With JavaScript
This same code without the HTML5 Drag and Drop and File Reader API pieces can be used in Node.js. Note: This module does...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
JSZip 3.x removed critical features that we use, so you have to use 2.x.
Due to other changes, the script is included in the node module and the dist
xlsx.full.min.js
ships with a version of JSZip that plays nice.@martinnov92 But I think it’s not quickly.