JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 38149
  • Score
    100M100P100Q145833F
  • License BSD

Extract text from pdfs that contain searchable pdf text

Package Exports

  • pdf-text-extract

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pdf-text-extract) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

PDF Text Extract

Extract text from pdfs that contain searchable pdf text. The module calls the pdftotext command to perform the actual extraction build status Dependency Status

Installation

npm install pdf-text-extract

You will need the pdftotext binary available on your path. There are packages available for many different operating systems

See https://github.com/nisaacson/pdf-extract#osx for how to install the pdftotext command

Usage

var filePath = path.join(__dirname, 'test/pdf')
var extract = require('pdf-text-extract')
extract(filePath, function (err, pages) {
  if (err) {
    console.dir(err)
    return
  }
  console.dir('extracted pages', pages)
})

The output will be an array of where each entry is a page of text. If you want just a string of all pages you can do pages.join(' ')

Test

# install dev dependencies
npm install
# run tests
npm test