1.0.0 • Published 2 years ago

spreadsheet-parser v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

spreadsheet-parser

Version Downloads

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:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. 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.\ A promise resolving the array content of the spreadsheet.

:yum: How to contribute

Have an idea? Found a bug? See how to contribute.

:scroll: License

MIT © Bloggify