Package Exports
- @deveshrx/node-pdf
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@deveshrx/node-pdf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Node-PDF
Create PDF file from HTML
Node-PDF can convert html code into pdf file. Node-PDF is based on puppeteer to render html code and create pdf file.
Install
npm i @deveshrx/node-pdfUsage
nodepdf.CreatePDF(<HTML> , <FileName.pdf>, <FolderName>);
Example
var nodepdf = require("@deveshrx/node-pdf");
async function createPDF(){
await nodepdf.CreatePDF("<html><body>Hello PDF !!</body></html>", "file.pdf", "my-folder");
}