Skip to content

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

License

Notifications You must be signed in to change notification settings

yujiang/excel.js

This branch is 1 commit ahead of, 5 commits behind trevordixon/excel.js:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3888f9a · Feb 16, 2019

History

77 Commits
Feb 16, 2019
Mar 16, 2018
Mar 16, 2018
Mar 16, 2018
Mar 16, 2018
Mar 16, 2018
Aug 10, 2017
Mar 16, 2018
Mar 16, 2018
Mar 16, 2018
Mar 16, 2018
Feb 27, 2014

Repository files navigation

Excel.js Build Status

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

Install

npm install excel

Use

import parseXlsx from 'excel';

parseXlsx('Spreadsheet.xlsx').then((data) => {
  // data is an array of arrays
});

If you have multiple sheets in your spreadsheet,

parseXlsx('Spreadsheet.xlsx', '2').then((data) => {
  // 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

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%