Simple NodeJS XLSX parser.
npm install excelExcel.js 
========
Native node.js Excel file parser. Only supports *.xlsx files for now.
Install
=======
``js`
npm install excel
Use
===
`js
import parseXlsx from 'excel';
parseXlsx('Spreadsheet.xlsx').then((data) => {
// data is an array of arrays
});
`
If you have multiple sheets in your spreadsheet,
`js``
parseXlsx('Spreadsheet.xlsx', '2').then((data) => {
// data is an array of arrays
});npm test`
Test
=====
Run
MIT License.
Thanks to all other contributors.