npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

pdfile

v1.0.0

Published

PDFile is a Node.js library for generating high-quality, dynamic PDFs using Handlebars templates and Puppeteer. It supports multi-page PDFs and offers full customization. Perfect for web developers, it enables easy creation of multi-page PDFs by simply de

Downloads

20

Readme

PDFile

PDFile is a Node.js library for generating high-quality, dynamic PDFs using Handlebars templates and Puppeteer. It supports multi-page PDFs and offers full customization. Perfect for web developers, it enables easy creation of multi-page PDFs by simply designing HTML templates for output.

Installation

npm i pdfile

Usage

Initialization

Import the function

import { generatePdf } from 'pdfile';

Call the function to generate the PDF

const generatedPdfFilePath = await generatePdf({
  [templateFilePath],
  [dataPerPage],
  [pdfFilePath],
  [useStream],
  [helpersFilePath],
  [puppeteerOptions],
  [pdfOptions],
});

| Parameter | Type | Description |Required | Default | | --------------- | ---------------------- | ----------------------------- | ---------------------- | ----------------------------- | | templateFilePath | string | Path to the Handlebars template file. | Yes | N/A | | dataPerPage | Array | Array of objects containing data for each page of the PDF | Yes | N/A | | pdfFilePath | string | The path where the generated PDF file will be saved. Required, if useStream is not passed or set to false. | No | N/A | | useStream | boolean | Returns a readable stream of the PDF instead of saving it to disk if set to true | No | false | | helpersFilePath | string | Path to a file containing custom Handlebars helpers. | No | N/A | | puppeteerOptions | object | Puppeteer launch options (e.g., headless mode, executable path). <PuppeteerLaunchOptions> | No | { "headless": true, "args": ["--no-sandbox", "--disable-setuid-sandbox", "--disable-dev-shm-usage"] } | | pdfOptions | object | Options for PDF generation (e.g., format, margins). <PDFOptions> | No | { "format": "A4", "margin": { "left": "10mm", "top": "10mm", "right": "10mm", "bottom": "10mm" }, "printBackground": true } |

Working Example

To quickly get started, you can use the 'example' folder and check out the working code given in the file 'file.service.ts'. Ensure all dependencies are installed beforehand.

PDF generated in this example:

plot

More details


| JavaScript | Handlebars Helper Syntax (Standard) | Handlebars Helper Syntax (Custom) | | --------------- | ---------------------- | ----------------------------- | | if (a === b) | {{#if (eq a b)}} | {{#ifCond var1 '===' var2}} | | if (a !== b) | {{#if (not-eq a b)}} | {{#ifCond var1 '!==' var2}} | | if (a && b) | {{#if (and a b)}} | {{#ifCond var1 '&&' var2}} | | if (a > b) | {{#if (gt a b)}} | {{#ifCond var1 '>' var2}} | | if (a >= b) | {{#if (gte a b)}} | {{#ifCond var1 '>=' var2}} | | if (a < b) | {{#if (lt a b)}} | {{#ifCond var1 '<' var2}} | | if (a <= b) | {{#if (lte a b)}} | {{#ifCond var1 '<=' var2}} | | if (a && b) | {{#if (and a b)}} | {{#ifCond var1 '&&' var2}} | | if (a \|\| b) | {{#if (or a b)}} | {{#ifCond var1 \|\| var2}} |

License

MIT