gitbrent / xlsx-js-style

SheetJS Community Edition + Basic Cell Styles
https://gitbrent.github.io/xlsx-js-style/
Apache License 2.0
378 stars 59 forks source link

Problems with json size bigger than 90MB #20

Open ACamposPT opened 1 year ago

ACamposPT commented 1 year ago

Hi, I'm having problems adding a json file to a sheet for a json size bigger than 90MB.

const jsonSize = require('json-size');
console.log(jsonSize(data));
xlsx.utils.sheet_add_json(ws, data, { origin: -1 });

Output: 92949443

After print the "jsonSize" the method "sheet_add_json" do not responde. Any ideia?