Is there any way I can select an excel file of 100MB size with almost 200k rows and 30 columns. I am using SheetJS and it show out of memory. Can anyone suggest, if anyone has tried the same?
I am using Filereader object, which is storing all the data in memory.
Below is the code snippet.
XLSX.read(data,{ type: 'array'});
Array=XLSX.utils.sheet_to_json(....);
reader.readAsArrayBuffer(file);