1.0.0 • Published 3 years ago

pdf-juice v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

pdf-juice

Extract information from pdfs in txt, json and/or html.

installation

npm i pdf-juice

usage

const { PdfJuice } = require('pdf-juice');

(async () => {
  const juice = new PdfJuice({ formats: ['json', 'txt', 'html']});
  await juice.processFile('./The Complete Works of H.P. Lovecraft.pdf');
})();