excel-multi

0.0.4 • Public • Published

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(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 trevordixon@gmail.com

Contributors:

Readme

Keywords

none

Package Sidebar

Install

npm i excel-multi

Weekly Downloads

3

Version

0.0.4

License

MIT

Last publish

Collaborators

  • norristong