I'm looking for an npm
module, that I can use to edit the metatags like Author and Title of PDF files.
Alternatively, an open-license JavaScript library would also be okay.
There's a program called pdftk, which would be suitable if it was an npm
module.
I have not tested this package but node-exiftool seems to provide pdf metadata edition.
Another possibility is to write your own module with use of pdftk (if available) and child_process.
Maybe I will try to make one myself.
You can install the
exiftool
command line utility to edit the metadata of PDFs:Then you can use the Node.js
child_process.exec()
function to call the command line utility from your program: