@lesjoursfr/html-to-pdf
v3.1.8
Published
A library to generate PDF from HTML.
Downloads
29
Readme
@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 pageoutput
: The PDF file path