Use pdftotext stdin without specifying an output file.
npm install pdftotext-stdin
Beta / WIP:
Make pdftotext read/write to streams.
#### Dependencies
pdftotext 0.62.0
#### Usage
``bash`
npm install --save pdftotext-stdin
`javascript
const extractor = require('pdftotext-stdin');
const rs = fs.createReadStream('my.pdf');
extractor.extractTextFromPdfStream(rs).then(text => {/.../});
``
#### Acknowledgements
* poppler for this great tool.
* pdf-text-extract for the inspiration