@libs-jd/xlsx-parse-table
A library to parse tables from Excel worksheets.
Install
Install with npm:
$ npm install --save @libs-jb/xlsx-parse-table xlsx
Usage
Works with Excel files.
Example - Node.js
const xlsx = require("xlsx");
const workbook = xlsx.readFile("path/to/excel-file.xlsx");
const worksheet = workbook.Sheets[workbook.SheetNames[0]];
const { parse } = require("@libs-jb/xlsx-parse-table");
const tables = parse(worksheet);
console.log(tables);
About
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Related projects
You might also be interested in these projects:
Contributors
Author
Jeet Dhandha
License
Released under the MIT License.