Generating dynamic PDFs is a common requirement in web development. Whether it's for invoices, reports, or resumes, creating a robust PDF generator is an essential skill for developers. In this article, I'll walk you through building a PDF generator using Node.js and Puppeteer, a powerful headless browser library.
As an example, I used this same method to build my CV Maker Project, which takes user input and dynamically generates a PDF. You can see the live demo of the project here: Live Demo.
This guide is written in plain, beginner-friendly language. If any part feels unclear, feel free to leave a comment, and I’ll address it as soon as possible.
Before we begin, ensure you have the following:
npm install puppeteer
If you’d like to reference the complete source code for this tutorial, check out my GitHub repository.
First, create an endpoint where the client can send data to generate a PDF. For this, we’ll define a simple POST route in our index.js (or equivalent main server file).
app.post("/data", async (req: Request, res: Response) => { let postData = req.body.data; // Storing the data sent from the client });
This endpoint will receive the data that needs to be included in the PDF.
To keep the code organized, create a folder named controllers in your project directory. Inside this folder, create a file named PdfController.js.
The controller file is where we’ll write the logic for generating the PDF. This keeps our code modular and makes it easier to maintain.
In PdfController.js, add the following code to generate a PDF using Puppeteer:
export default (async function (postData) { try { const browser = await puppeteer.launch({ headless: true, args: ["--no-sandbox", "--disable-gpu"], }); const page = await browser.newPage(); const content = `<html><body><h1>${postData}</h1></body></html>`; await page.setContent(content); await page.emulateMediaType('screen'); await page.pdf({ path: 'resume.pdf', format: 'A4', printBackground: true, }); console.log('PDF created'); await browser.close(); } catch (err) { console.error('Error:', err); } });
Here’s what this code does:
Now, connect the PdfController function to the POST endpoint in index.js:
import PdfController from "./controllers/controller.js"; app.post("/data", async (req: Request, res: Response) => { let postData = req.body.data; // Storing the data sent from the client await PdfController(postData); });
This ensures that whenever the /data endpoint is called, the logic for generating the PDF will be executed.
At this point, you can test the endpoint using Postman or any other HTTP client. When you send a POST request with the relevant text data, a PDF named resume.pdf will be created in the project’s root directory.
To send the generated PDF back to the client as a response, install the fs-extra package:
npm install puppeteer
Then update the POST endpoint as follows:
app.post("/data", async (req: Request, res: Response) => { let postData = req.body.data; // Storing the data sent from the client });
This code sends the resume.pdf file as a downloadable attachment to the client.
And that’s it! ? You’ve built a complete PDF generator using Node.js and Puppeteer. This setup dynamically generates PDFs based on user input and sends them back as downloadable files.
Here’s what you achieved:
If you’d like to generate well-structured and formatted PDFs (e.g., resumes or invoices with tables and styles), let me know in the comments. I’d love to write another tutorial for advanced use cases.
Also, feel free to check out the complete project code. It’s well-documented and beginner-friendly.
Have a nice day!
The above is the detailed content of Use puppeteer with Node to create PDFs!. For more information, please follow other related articles on the PHP Chinese website!