Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.02 KB

readme.md

File metadata and controls

41 lines (29 loc) · 1.02 KB

npm version QC Checks

@lesjoursfr/html-to-pdf

Generate PDF from HTML with simple API in Node.js.

What is this library?

This library use electron to generate PDF files from HTML.

Usage

Install the lib and add it as a dependency :

    npm install @lesjoursfr/html-to-pdf

Then put this in your code:

    const { PDF } = require("@lesjoursfr/html-to-pdf");

    const pdf = new PDF(target, output);
    pdf.render()
        .then(() => {
            console.log("PDF Generated Successfully!")
        })
        .catch((err) => {
            console.error("Failed to generate PDF because of ", err)
        });
    );

Parameters

  • target: The URL of the HTML page
  • output: The PDF file path