How to add text on top of an existing PDF using JavaScript on a website?
https://pdf-lib.js.org/ library supports modification of existing PDF file. const pdfDoc = await PDFDocument.load(…) const pages = pdfDoc.getPages() pages[0].drawText(‘You can modify PDFs too!’) const pdfBytes = await pdfDoc.save()