Generate PDF from HTML with simple API in Node.js.
This library use electron to generate PDF files from HTML.
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)
});
);
target
: The URL of the HTML pageoutput
: The PDF file path