excel

1.0.1 • Public • Published

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.

/excel/

    Package Sidebar

    Install

    npm i excel

    Weekly Downloads

    1,364

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    84.9 kB

    Total Files

    14

    Last publish

    Collaborators

    • clickclickonsal
    • trevordixon