excel-multi

Web and node.js spreadsheet library. Supports xlsx, csv, tsv (or any simple delimited file) for now.

Usage no npm install needed!

<script type="module">
  import excelMulti from 'https://cdn.skypack.dev/excel-multi';
</script>

README

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: