excel-multi
v0.0.4
Published
Web and node.js spreadsheet library. Supports xlsx, csv, tsv (or any simple delimited file) for now.
Readme
Excel.js
Native node.js Excel file parser. Only supports xlsx for now.
Install
npm install excelUse
var parseXlsx = require('excel');
parseXlsx('Spreadsheet.xlsx', function(err, data) {
if(err) throw err;
// data is an array of arrays
});If you have multiple sheets in your spreadsheet,
parseXlsx('Spreadsheet.xlsx', '2', 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
