JSPM

@deveshrx/node-pdf

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q34163F
  • License ISC

Create PDF file from HTML

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 version Node version Node version

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-pdf

Usage

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");

}