Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Simplify PDF Generation – Avoid Puppeteer Overhead #630

Open
malay77patra opened this issue Feb 27, 2025 · 3 comments
Open

[FEATURE] Simplify PDF Generation – Avoid Puppeteer Overhead #630

malay77patra opened this issue Feb 27, 2025 · 3 comments
Assignees

Comments

@malay77patra
Copy link
Contributor

malay77patra commented Feb 27, 2025

Problem Statement

Currently, Puppeteer is used to convert HTML to PDF, but this approach is excessive for our needs. It is also difficult to set up in cloud environments.

Users input data through a form, and we extract this data as JSON. Since we only need structured data from the form, converting HTML to PDF is unnecessary.

Proposed Solution

Instead of rendering HTML and converting it to PDF, we can directly generate PDFs using a JavaScript-based PDF library. The form data can be processed as JSON and used to build the PDF without requiring an intermediate HTML representation.

Suggested Alternatives

  • Use jsPDF or a similar JavaScript library to generate PDFs directly from form data.
  • This would simplify the implementation, reduce dependencies, and improve cloud compatibility.

Additional Information

If that sounds useful I am happy to help you out with the implementation.

@malay77patra malay77patra changed the title [FEATURE] - Pupeeteer for converting html to pdf seems overkilling [FEATURE] - Puppeteer for converting html to pdf seems overkilling Feb 27, 2025
@malay77patra malay77patra changed the title [FEATURE] - Puppeteer for converting html to pdf seems overkilling [FEATURE] Simplify PDF Generation – Avoid Puppeteer Overhead Feb 27, 2025
@al1abb
Copy link
Owner

al1abb commented Feb 27, 2025

Sounds cool. I remember trying this approach first, but I couldn't get it to work, so I used puppeteer instead

@curious-companion
Copy link

@al1abb @malay77patra Since jsPDF directly converts JSON to a PDF format, how can we apply Tailwind styles (from TAILWIND_CDN) to the PDF? Since Tailwind is designed for HTML, would rendering the styled content to an image using html2canvas and then embedding it into the PDF be a suitable approach?

@malay77patra
Copy link
Contributor Author

malay77patra commented Mar 5, 2025

Hi @al1abb !

I found a way to generate a PDF from HTML using the react-pdf (with react-pdf-html) libraries, which can completely eliminate the need for Puppeteer.
However, it requires raw HTML and CSS code with styles applied.

Is it possible to get the raw HTML and CSS of the templates?

I noticed that currently, it retrieves the HTML with Tailwind classes and adds a Tailwind CDN to the page for styling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants