1.0.4 • Published 2 years ago

excel-read v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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);
}
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago