Native node.js Excel file parser. Only supports xlsx for now.
npm install excel
var parseXlsx = require('excel');
parseXlsx('Spreadsheet.xlsx', function(err, data) {
if(err) throw err;
// data is an array of arrays
});
MIT License.
Author: Trevor Dixon [email protected]
Contributors:
- Jake Scott [email protected]
- Fabian Tollenaar [email protected] (Just a small contribution, really)
- amakhrov