excel-errors
v0.0.6
Published
Web and node.js spreadsheet library. Supports xlsx, csv, tsv (or any simple delimited file) for now.
Downloads
4
Readme
Excel.js
Native node.js Excel file parser. Only supports xlsx for now.
Install
npm install excel
Use
var parseXlsx = require('excel');
parseXlsx('Spreadsheet.xlsx', function(data) {
// data is an array of arrays
});
MIT License.