Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
pdf2table is a node.js library that attempts to extract tables from a pdf
pdf2table is a node.js library that attempts to extract tables from a pdf.
The 'tables' are extracted as an array of rows.
It uses pdf2json to extract the pdf data.
You can install pdf2table using the Node Package Manager (npm):
npm install pdf2table
var pdf2table = require('pdf2table');
var fs = require('fs');
fs.readFile('./test.pdf', function (err, buffer) {
if (err) return console.log(err);
pdf2table.parse(buffer, function (err, rows, rowsdebug) {
if(err) return console.log(err);
console.log(rows);
});
});
Note that this is a simplistic implementation to extract tables. If your pdf contains other stuff that's not a table, pdf2table will still attempt to shape this data into a row. Feel free to improve and send pull requests.
FAQs
pdf2table is a node.js library that attempts to extract tables from a pdf
The npm package pdf2table receives a total of 3,418 weekly downloads. As such, pdf2table popularity was classified as popular.
We found that pdf2table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.