A library that converts HTML to PDF using Headless Chrome (puppeteer)
npm install --save @mbrandau/htmlpdf
The following example creates a PDF file of the index.html file.
const fs = require('fs');
const htmlPdf = require('@mbrandau/htmlpdf');
(async () => {
const options = {
format: 'Letter'
};
const pdfBuffer = await htmlPdf(fs.readFileSync('index.html'), options);
fs.writeFileSync('index.pdf', pdfBuffer); // Write PDF file
})();
#htmlPdf(html[, options]) <Buffer> (async function)
Creates a PDF Buffer of the provided HTML using puppeteer. For available options see the puppeteer documentation.