json_from_xlsx
v1.0.11
Published
To convert the excel into json
Downloads
4
Readme
Excel to JSON Converter
A Node.js module to convert Excel files to JSON.
Installation
npm i json_from_xlsx
##Usage
const ExceltoJson = require('json_from_xlsx');
let sheetNumber = 1;
let operationType = 'read'; // for read file from Path
or
let operationType = 'load'; // for load file from Buffer
let json = await ExceltoJson.convertExcelToJson(filePath, sheetNumber, operationType);