[Dev] PDFからテキストを抽出する

in japanese •  4 months ago 
var pdfUtil = require('pdf-to-text');
let [pdf_path] = process.argv.slice(2)
pdfUtil.pdfToText(pdf_path, function(err, data) {
  if (err) throw(err);
  console.log(data);
});
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!