I am trying and banging my head already while trying to read excel file in Reactjs.
I have tried multiple libraries out there like, Sheetjs , excel-parser, exceljs and so on (like 8-9) libraries.
I am getting weird and different errors in every library.
For example i am using excel-parser and getting following error
JavaScript
x
2
1
Module not found: 'child_process'
2
That is because it is a node module and won’t work in browser.
Anyone know some good and easy library that can work with reactjs in browser?
Advertisement
Answer
I have successfully read excel file using Sheetjs‘s npm version xlsx.
Here is code:
JavaScript
1
18
18
1
import * as XLSX from 'xlsx';
2
//f = file
3
var name = f.name;
4
const reader = new FileReader();
5
reader.onload = (evt) => { // evt = on_file_select event
6
/* Parse data */
7
const bstr = evt.target.result;
8
const wb = XLSX.read(bstr, {type:'binary'});
9
/* Get first worksheet */
10
const wsname = wb.SheetNames[0];
11
const ws = wb.Sheets[wsname];
12
/* Convert array of arrays */
13
const data = XLSX.utils.sheet_to_csv(ws, {header:1});
14
/* Update state */
15
console.log("Data>>>"+data);
16
};
17
reader.readAsBinaryString(f);
18