
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
generate-pdf-from-react-html
Advanced tools
generate-pdf-from-react-html is a React JS library for converting html to printable pdf with high quality and saving it locally.
📄 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
✔️ Resize PDF on generating
✔️ Loading indicating finishing of function
milen-minchev.github.io/generate-pdf-from-react-html-demo
Use the package manager npm to install generate-pdf-from-react-html.
npm i generate-pdf-from-react-html
import { pdfFromReact } from "generate-pdf-from-react-html";
pdfFromReact(element, name, resize, debug);
ℹ️ For best result and preview set width: 600px;
and min-height: 840px
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:
#CSS
.element-for-print {
width: value;
height: value;
etc...
}
#SCSS
.element-for-print {
width: value;
height: value;
etc...
}
#CSS
.parent-element .element-for-print {
width: value;
height: value;
etc...
}
#SCSS
.parent-element{
.element-for-print {
width: value;
height: value;
etc...
}
}
import { pdfFromReact, loading } 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>
{loading ? (
<p>Generating pdf...</p>
) : (
<button
onClick={() => pdfFromReact(".element-to-print", "My-file", true, false)}
></button>
)}
</div>;
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 filefalse
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.loading
: (boolean)
to indicate whether the the generating is finished.
FAQs
generate-pdf-from-react-html is a React JS library for converting html to printable pdf with high quality and saving it locally.
The npm package generate-pdf-from-react-html receives a total of 55 weekly downloads. As such, generate-pdf-from-react-html popularity was classified as not popular.
We found that generate-pdf-from-react-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.