1.0.2 • Published 4 years ago

csv-converter-to-pdf-and-html v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

csv-converter-to-html-and-pdf

Program to convert excel (CSV) to HTML and PDF using OO in JavaScript with Node.js


Instalação:

    npm install --save csv-converter-to-pdf-and-html

Como usar:

    const Converter = require("csv-converter-to-pdf-and-html")
    const path = require("path")

    const converter = new Converter()

    const filePath = path.resolve("./users.csv") // Caminho completo
    const destinationPath = path.resolve("./HTMLandPDF") // Aqui não precisa especificar a extensão (HTML or PDF)

    converter.HTMLAndPDFConverter(filePath, destinationPath)

Outras funções:

   converter.HTMLConverter(filePath, destinationPath)
   converter.PDFConverter(filePath, destinationPath)