spreadsheet-parser
v2.0.0
Published
Parse spreadsheet files with ease.
Downloads
3
Maintainers
Readme
spreadsheet-parser
Parse spreadsheet files with ease.
:cloud: Installation
# Using npm
npm install --save spreadsheet-parser
# Using yarn
yarn add spreadsheet-parser
:clipboard: Example
const SpreadsheetParser = require("spreadsheet-parser");
(async () => {
const content = await SpreadsheetParser(`${__dirname}/sample.xlsx`)
console.log(content)
const csvContent = await SpreadsheetParser(`${__dirname}/sample.csv`, {
headers: true
})
console.log(csvContent)
})()
:question: Get Help
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. :bug:
:memo: Documentation
spreadsheetParser(filePath, opts)
Parse spreadsheet files with ease.
Params
- Strings
filePath
: The spreadsheet file path. - Object
opts
: The options to pass to the processor.
Return
- Promise<Array> A promise resolving the array content of the spreadsheet.
:yum: How to contribute
Have an idea? Found a bug? See how to contribute.