“Nó JS Crie pdf a partir de html” Respostas de código

nó js servir arquivo pdf

res.setHeader('Content-Type', 'application/pdf')
CL

Nó JS Crie pdf a partir de html

The problem with using PDF converter libraries available on NPM like pdfkit is that, you gonna have to recreate the page structures again in your html templates to get the desired output.

One of the best approach to rendering html and convert to pdf is by using Puppeteer on NodeJs. Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. It can be used to generate screenshots and PDFs of html pages in your case.
Santino

nó js servir arquivo pdf

app.use('/pdf', express.static(__dirname + '/pathToPDF'));
Worrisome Wallaby

Respostas semelhantes a “Nó JS Crie pdf a partir de html”

Perguntas semelhantes a “Nó JS Crie pdf a partir de html”

Mais respostas relacionadas para “Nó JS Crie pdf a partir de html” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código