[go: up one dir, main page]

Skip to content

Native node.js Excel file parser. Only supports xlsx for now.

Notifications You must be signed in to change notification settings

mike-zorn/excel.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Excel.js Build Status

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
});

Test

Run npm test

MIT License.

Thanks to all other contributors.

About

Native node.js Excel file parser. Only supports xlsx for now.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 100.0%