A collection of utilities to work with PDFs. Uses Mozilla's PDF.js under the hood and lazily initializes the library.
unpdf takes advantage of export conditions to circumvent build issues in serverless environments. For example, PDF.js depends on the optional canvas module, which doesn't work inside worker threads.
This library is also intended as a modern alternative to the unmaintained but still popular pdf-parse.
- ποΈ Conditional exports for Node.js, worker and browser environments
- π¬ Extract text and images from PDFs
- π§± Opt-in to legacy PDF.js build
Run the following command to add unpdf to your project.
# pnpm
pnpm add unpdf
# npm
npm install unpdf
# yarn
yarn add unpdfimport { extractPDFText } from 'unpdf'
// Fetch a PDF file from the web
const pdf = await fetch('https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf')
.then(res => res.arrayBuffer())
// Or load it from the filesystem
const pdf = await readFile('./dummy.pdf')
// Pass the PDF buffer to the relevant method
const { totalPages, text } = await extractPDFText(
new Uint8Array(pdf), { mergePages: true }
)// Before using any other methods, define the PDF.js module
import { defineUnPDFConfig } from 'unpdf'
// Use the legacy build
defineUnPDFConfig({
pdfjs: () => import('pdfjs-dist/legacy/build/pdf.js')
})
// Now, you can use the other methods
// β¦import { getResolvedPDFJS } from 'unpdf'
const { version } = await getResolvedPDFJS()interface UnPDFConfiguration {
/**
* By default, UnPDF will use the latest version of PDF.js. If you want to
* use an older version or the legacy build, set a promise that resolves to
* the PDF.js module.
*
* @example
* () => import('pdfjs-dist/legacy/build/pdf.js')
*/
pdfjs?: () => Promise<typeof PDFJS>
}Define a custom PDF.js module, like the legacy build. Make sure to call this method before using any other methods.
function defineUnPDFConfig(config: UnPDFConfiguration): Promise<void>Returns the resolved PDF.js module. If no build is defined, the latest version will be initialized.
function getResolvedPDFJS(): Promise<typeof import('pdfjs-dist')>function getPDFMeta(
data: BinaryData | PDFDocumentProxy
): Promise<{
info: Record<string, any>
metadata: Record<string, any>
}>function extractPDFText(
data: BinaryData | PDFDocumentProxy,
{ mergePages }?: { mergePages?: boolean }
): Promise<{
totalPages: number
text: string | string[]
}>function getImagesFromPage(
data: BinaryData | PDFDocumentProxy,
pageNumber: number
): Promise<ArrayBuffer[]>MIT License Β© 2023-PRESENT Johann Schopplich