excel-read
v1.0.4
Published
This is an application to get data in different format from an excel file
Downloads
4
Readme
Excel Read
Excel Read is an npm package to extract data from any excel sheet with specified requirement and latest node version.
Installation
Install the package using npm:
npm i excel-read
const { getColumnData } = require('excel-read');
// object data
const dataObject = {
filePath: '/path/to/file',
columnName: 'any-column-name-of-excel-file',
seperatedBy: ',' // any seperater which you need for your data to be seperated
};
// Call the getColumnData function to get column data according to your need
try {
getColumnData(dataObject);
} catch (error) {
console.error('Error:', error.message);
}