PDF.js

Mozilla's HTML5-based library for parsing and rendering PDF documents in the browser and Node.js.

Library
npm
v6.2.108
53,753stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
94/100Excellent
Development Activity100
Maintenance84
Community92
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
88/100Excellent
Architecture92
Code Quality93
Innovation88
Learning Curve80

PDF.js is a community-driven, Mozilla-supported JavaScript library that parses and renders Portable Document Format (PDF) files entirely with web standards, requiring no native plugins. Distributed on npm as pdfjs-dist, it powers Firefox’s built-in PDF viewer and countless web applications that need to display, inspect, or extract content from PDFs.

The library exposes a document API for loading PDFs and rendering their pages to an HTML5 canvas, along with text-layer and annotation-layer building blocks for selectable text, links, and interactive form fields. Heavy parsing runs in a Web Worker so the main thread stays responsive, and the package ships both modern and legacy builds to support a wide range of browsers.

What You Get

  • A prebuilt distribution (pdfjs-dist) with pdf.js and a separate pdf.worker for off-main-thread parsing
  • A promise-based document/page API (getDocument, page.render) for loading and rendering PDFs to canvas
  • Text-layer and annotation-layer helpers for selectable text, hyperlinks, and interactive form fields
  • Modern and legacy build variants covering both current and older browser targets
  • A complete, ready-to-embed generic web viewer plus a large collection of usage examples

Common Use Cases

  • Embedding an in-browser PDF viewer without relying on native browser plugins
  • Rendering PDF pages to canvas or images for previews and thumbnails
  • Extracting text content from PDFs for search, indexing, or accessibility
  • Displaying and filling interactive PDF forms and annotations in a web app

Under The Hood

Architecture — PDF.js is split across three source layers under src/: core/ parses the raw PDF byte stream (objects, xref tables, fonts, CMaps, content-stream operators, image and stream decoders in files like document.js, parser.js, and crypto.js), display/ turns parsed operator lists into rendered output via api.js (the public getDocument/PDFDocumentProxy/PDFPageProxy surface) and canvas.js (the 2D canvas renderer), and shared/ holds constants and utilities used by both. The expensive parsing work runs inside a Web Worker (pdf.worker.js), communicating with the display layer over a structured message transport so the UI thread only receives operator lists to paint. Text and annotation layers (text_layer.js, annotation_layer.js) are rendered as DOM overlays aligned to the canvas.

Tech Stack — The library is written in modern JavaScript (ES modules, "type": "module") with no runtime dependencies in the published package. The build pipeline uses Gulp, Webpack, and Babel (with core-js polyfills for the legacy build) to bundle src/ into the production pdf.js/pdf.worker.js scripts; TypeScript declaration files are generated via tsc for typed consumers. Node.js 22.13+ or 24+ is required for development. Localization uses Fluent, and native canvas rendering for Node tests goes through @napi-rs/canvas.

Code Quality — The repository has an extensive test suite: 71 unit-test modules under test/unit/, plus Puppeteer-driven integration tests, reference (pixel-comparison) tests, and font tests, all wired into GitHub Actions with Codecov coverage tracking across three workflows. Code is linted with ESLint (including no-unsanitized and regexp plugins), formatted with Prettier, and style-checked with Stylelint. With over 23,000 commits and 500+ contributors over more than a decade, the codebase is mature and rigorously maintained.

API Design — The public API is deliberately small and promise-based: getDocument(src) returns a loading task resolving to a document proxy, doc.getPage(n) returns a page proxy, and page.render({ canvasContext, viewport }) paints it. Worker setup is handled by assigning GlobalWorkerOptions.workerSrc, the one piece of required boilerplate. The API is thoroughly documented at mozilla.github.io/pdf.js/api and backed by interactive examples and an examples folder covering components, image decoders, Node usage, and webpack integration, which flattens the otherwise steep learning curve of working with a format as complex as PDF.

Used by 42 apps in this directory

TypeScript
59%
Other

agenta

Developer Tools · Devops · AI Development

4,489

The open-source LLMOps platform unifying prompt engineering, evaluation, and observability for teams building reliable LLM applications.

View details
91
Repo Health
77
Technical
67
Dependency
Built with
TypeScript59%
Python39%
Updated today
TypeScript
89%
Other

anytype-ts

Knowledge Management · Note Taking · Collaboration

8,665

A local-first, end-to-end encrypted knowledge OS that lets you build notes, tasks, wikis, and entire apps — with your data stored offline and synced peer-to-peer.

View details
88
Repo Health
78
Technical
67
Dependency
Built with
TypeScript89%
Updated yesterday
TypeScript
99%
MIT

Cate

AI Code Assistants

2,087

A desktop IDE built on an infinite canvas — spread code editors, terminals, browsers, docs, and AI agents across freeform space instead of stacking windows and tabs, with layouts restored automatically.

View details
79
Repo Health
71
Technical
72
Dependency
Built with
TypeScript99%
Updated today
TypeScript
99%
AGPL 3.0

Cherry Studio

AI Assistants

50,753

All-in-one AI desktop client with 300+ assistants and multi-model support

View details
88
Repo Health
84
Technical
71
Dependency
Built with
TypeScript99%
Updated today
JavaScript
82%
Other

Countly

Analytics · Marketing

5,887

Privacy-first, self-hosted analytics and customer engagement platform with full data ownership, GDPR compliance, and AI-powered insights across mobile, web, desktop, and IoT.

View details
96
Repo Health
82
Technical
68
Dependency
Built with
JavaScript82%
Updated today
TypeScript
92%
AGPL 3.0

Documenso

Digital Signiture

14,603

Self-hosted, open-source DocuSign alternative with legally binding PDF signatures, multi-party workflows, and a full REST and tRPC API.

View details
93
Repo Health
79
Technical
72
Dependency
Built with
TypeScript92%
Updated today
TypeScript
89%
Other

FastGPT

AI Agents · AI Development

29,387

Build, debug, and deploy knowledge-based AI agents with a visual workflow editor, RAG retrieval, and support for any OpenAI-compatible LLM.

View details
93
Repo Health
84
Technical
70
Dependency
Built with
TypeScript89%
Updated today
TypeScript
62%
Other

Flowise

Developer Tools · Automation · No Code Platforms

55,379

Drag-and-drop visual builder for AI agents, RAG pipelines, and multi-agent systems—deploy anywhere in minutes.

View details
91
Repo Health
77
Technical
64
Dependency
Built with
TypeScript62%
JavaScript27%
Updated 6 days ago
Ruby
67%
Other

GitLab

Devops · Developer Tools

24,533

The complete DevOps platform that unifies Git hosting, CI/CD, issue tracking, and security scanning into a single self-hostable application.

View details
87
Repo Health
86
Technical
70
Dependency
Built with
Ruby67%
JavaScript20%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search