Socket
Book a DemoInstallSign in
Socket

@crit-tech/pdf2text

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crit-tech/pdf2text

Extracts raw text from PDF (no OCR)

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

pdf2text

Uses pdf2json to scrape text from PDFs

Usage

import pdf2text from "@crit-tech/pdf2text";

const pages = await pdf2text("path/to/file.pdf");

pages.forEach((page, pageNo) => {
  console.log(`Text from page ${pageNo}:`);
  console.log(page);
});

FAQs

Package last updated on 08 Jul 2023

Did you know?

Socket

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.

Install

Related posts