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

generate-pdf-from-react-html

v1.0.5

Published

generate-pdf-from-react-html is a React JS library for converting html to printable pdf with high quality and saving it locally.

Downloads

715

Readme

generate-pdf-from-react-html

📄 generate-pdf-from-react-html is a React JS library for converting html to printable pdf with high quality and saving it locally.

With generate-pdf-from-react-html you can include:

✔️ Images with high quality like logos, barcodes, QR codes, etc.

✔️ Applying external, internal and inline CSS

✔️ Portrait and landscape orientations

✔️ Multiple pages

✔️ Resize PDF on generating

Generated with generate-pdf-from-react-html:

Demo

milen-minchev.github.io/generate-pdf-from-react-html-demo

Installation

Use the package manager npm to install generate-pdf-from-react-html.

npm i generate-pdf-from-react-html

Usage

import { pdfFromReact } from "generate-pdf-from-react-html";

pdfFromReact(element, name, orientation  resize, debug);

ℹ️ For best result and preview set every page to width: 600px; and min-height: 840px for portrait and to width: 841px; and min-height: 595px for landscape orientation of desired element or set resize to true and will be resized automatically.

❗ In order CSS to work correctly, targeted element must be selected at top level in your style file, for example:

Correct:

#CSS
//portrait
.element-for-print {
  width: 600px;
  min-height: 840px;
  etc...
}
#SCSS
//landscape
.element-for-print {
  width: 841px;
  min-height: 595px;
  etc...
}

Wrong:

#CSS
//portrait
.parent-element .element-for-print {
  width: 600px;
  min-height: 840px;
  etc...
}
#SCSS
//landscape
.parent-element{
  .element-for-print {
    width: 841px;
    min-height: 595px;
    etc...
  }
}

Example

import { pdfFromReact } from "generate-pdf-from-react-html";

<div>
  <h1>Example page</h1>
  <div className="element-to-print">
    <p>
      Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste quia dicta
      itaque sunt fuga, illo ad eaque ea commodi temporibus perferendis
      provident doloribus non iusto asperiores excepturi autem facere qui!
    </p>
  </div>
  <button
    onClick={() =>
      pdfFromReact(".element-to-print", "My-file", "p", true, false)
    }
  ></button>
</div>;

Options

Required

  • element : (string) - Target HTML element based on document.querySelector(CSS selectors) like ".element-for-print", "#element-for-print" etc.
  • name : (string) - Choose name for the file
  • orientation : (string) - Choose orientation portrait ("p") or landscape ("l")

Optional, default is false

  • resize : (boolean) - If set to true sets fixed size of A4 (width and min-height) on generate. ❗ Targeted element must be responsive for best result ❗
  • debug : (boolean) - If set to true it's open generated PDF in new window for preview without automatically downloading it.

License

MIT