Gathering detailed insights and metrics for ngx-extended-pdf-viewer
Gathering detailed insights and metrics for ngx-extended-pdf-viewer
Gathering detailed insights and metrics for ngx-extended-pdf-viewer
Gathering detailed insights and metrics for ngx-extended-pdf-viewer
ngx-extended-pdf-silicon-valley-viewer
Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.
@pea11y/ngx-extended-pdf-viewer
Fork of https://github.com/stephanrauh/ngx-extended-pdf-viewer
@gidoont/ngx-extended-pdf-viewer
Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.
ngx-extended-pdf-viewer-vv
<p> <a href="https://www.npmjs.com/package/ngx-extended-pdf-viewer"> <img src="https://img.shields.io/npm/dm/ngx-extended-pdf-viewer.svg?style=flat" alt="downloads"> </a> <a href="https://badge.fury.io/js/ngx-extended-pdf-viewer"> <img
A full-blown PDF viewer for Angular 16, 17, and beyond
npm install ngx-extended-pdf-viewer
Typescript
Module System
Node Version
NPM Version
67.4
Supply Chain
98
Quality
95.3
Maintenance
100
Vulnerability
79.6
License
20.0.0
Published on 25 Apr 2024
Update to pdf.js 4.0
Published on 07 Feb 2024
18.0.0
Published on 19 Sept 2023
17.4.7
Published on 16 Sept 2023
Version 16: PDF editor and smooth zooming
Published on 05 Feb 2023
Version 15.0: pdf.js 2.6; support for AMD modules; bugfixes
Published on 11 Sept 2022
JavaScript (60.5%)
Fluent (33.89%)
TypeScript (2.91%)
SCSS (1.17%)
CSS (0.95%)
HTML (0.52%)
Shell (0.05%)
Dockerfile (0.01%)
Total Downloads
10,907,591
Last Day
17,779
Last Week
88,719
Last Month
383,134
Last Year
4,233,266
494 Stars
1,929 Commits
187 Forks
12 Watching
12 Branches
33 Contributors
Minified
Minified + Gzipped
Latest Version
22.1.0-alpha.0
Package Id
ngx-extended-pdf-viewer@22.1.0-alpha.0
Unpacked Size
41.16 MB
Size
17.22 MB
File Count
953
NPM Version
10.9.0
Node Version
22.11.0
Publised On
11 Dec 2024
Cumulative downloads
Total Downloads
Last day
5.4%
17,779
Compared to previous day
Last week
6.8%
88,719
Compared to previous week
Last month
-2.9%
383,134
Compared to previous month
Last year
59.7%
4,233,266
Compared to previous year
1
2
This library provides an embeddable PDF viewer component. It's different from other approaches like ng2-pdf-viewer in that it shows the full suite of UI widgets. In other words, it strongly resembles the PDF viewer of your browser:
npm add ngx-extended-pdf-viewer
and accept all the defaults1<ngx-extended-pdf-viewer [src]="'assets/example.pdf'"></ngx-extended-pdf-viewer>
Version 20.0.2 is a security fix. It solves CVE-2024-4367. I strongly recommend updating to the latest version of ngx-extended-pdf-viewer as soon as possible, or to version 20.0.2 as a minimum. Older versions contain a bug allowing malicious PDF files to run arbitrary code. Kudos go to GitHub users ScratchPDX and Deepak Shakya to tell me about it, so I could provide a hotfix during my vacations.
Version 22 updates to pdf.js 4.7.
Breaking changes:
NgxExtendedPdfViewerService.addEditorAnnotation
is now asynchronousThese versions were meant to be alpha versions, but I forgot to update the version number, and now I can't delete the offending version from npm. The update to pdf.js 4.7 didn't go as smoothless as I hoped, so these versions suffer from a few bugs. The good news is that most users probably won't notice. However, several buttons have new ids, so their functionality is lost in these two version. Better stick to version 21.4.4.
Version 21 is a major refactoring. The new version reduces the memory footprint and start-up times. I consider it a major progress: now the architecture is significantly cleaner. It's still work in progress, but you should notice the difference.
If you're using Content Security Policy (CSP), you might want to follow issue 2362. Earlier versions of the viewer offered a makeshift support of CSP. I hope to come up with a much cleaner solution soon.
Let's have a look at the changes in more detail. Version 21
Version 21 contains several breaking changes. The good news is that I assume the vast majority of developers won't even notice. These breaking changes are:
window.PDFViewerApplication
is now undefined. Earlier versions of the viewer stored many attributes, objects, and functions in the global namespace (i.e. globalThis
or window
). Many of these attributes have already migrated to PDFScriptLoaderService.PDFViewerApplication
. If you need the PDFViewerApplication
, you can get it from the PdfNoticationService
.window
object.recalculateSize$
and onPDFJSInit
are gone. You can use ``onPDFJSInitSignalto replace
onPDFJSInit. I suspect nobody uses
recalculateSize$`, so I didn't implement a replacement yet.[showXXX]
attributes.Basically, version 20.5.0 updates to pdf.js 4.3 and solves some memory leak issues. However, that turned out to be a major task, involving a major rewrite of the initialization of the library.
Breaking changes:
pdfDefaultOptions.assetsFolder
are temporarily broken. I've fixed this in version 21.0.0-alpha.2, but more likely than not I won't be able to publish the bugfix in a 20.5.x version.window.PDFViewerApplication
to be available early, you might see errors. Starting with version 20.5.0, the recommended approach is to listen to the signal PDFNotificationService.onPDFJSInitSignal()
. When the viewer is initialized, the signal fires and sends the references to PDFViewerApplication
and a few other resources. After receiving this signal, you can safely use the PDFViewerApplication
sent by the signal. When the viewer is destroy, the signal fires again, this time sending undefined
to indicate you must stop using PDFViewerApplication
. The next time the viewer initializes, the signal fires again, this time passing the reference to the new instance of PDFViewerApplication
.ngxConsoleFilter
, now you have to register it later. You can safely register the method when PDFNotificationService.onPDFJSInit
is fired. However, this event is subject to change, too - if everything goes according to plan, version 21 is going to replace this Observable
by a Signal
.There's also a detailed changelog.
There's a showcase at https://pdfviewer.net. Check this page for live demos, source code examples, and a handbook.
Would you like to participate in a popular open source-project? It's easy: just open a ticket so we can discuss the change, create a fork, and send me a pull request. Contributions to the showcase are as welcome as contributions to the core library.
Not to mention the ability to display PDF files, running on a customized version of Mozilla's pdf.js 4.6, released in September 2024.
Even I have to admit my pet project doesn't match every requirement. There are several alternatives out there. Feel free to expand the description to learn what other developers have in store for you:
There's also a direct counterpart to my library: ng2-pdfjs-viewer. As far as I can see, it's also a good library. As of Augst 2024, it's running on PDF.js 2.2.171. It wraps the PDF viewer in an iFrame. That's a more reliable approach, but it also offers fewer options. The list of attributes is shorter, and the PDF viewer can't emit events to your application. If you're not happy with my library, check out ng2-pdfjs-viewer. It's a good library, too. Its unique selling point is displaying multiple PDF files simultaneously on the same page.
You might also try to use the native PDF viewer of your browser. That's a valid approach. It's even the preferred approach. However, ngx-extended-pdf-viewer
gives you a wide range of options that aren't available using the native API.
As a rule of thumb, I recommend cloning the showcase project from GitHub to get familiar with the library. It's a standard Angular CLI application, so you'll get it up and running in less than ten minutes. It's a good starting point to do your experiments. Maybe even more important: you'll learn whether the library works on your machine. (Of course, it does, but it's always good to double-check!)
Currently, the minimum required version is Angular 16. The idea is to support the four most current versions of Angular, which gives you roughly two years to update. However, supporting so many versions isn't always possible.
If you're running a non-standard configuration, have a look at the getting-started page" of the showcase.
See the attribute list on the showcase and the list of default options page. The lists have become too long to put them here: 87 @Input()
attributes, 25 event emitters, and 50 default options, give or take a few.
Missing a configuration option? File an issue on the project bug tracker. If your request makes sense to me and if I can implement it in my (limited) leisure time, I'll add it. BTW, you can speed up the process by providing a code snippet telling me how to implement the feature or by submitting a pull request.
The service NgxExtendedPdfViewerService
offers a programmatic API for searching, printing, dealing with layers, and scrolling within the page.
Pull requests and bug reports are welcome. Please send them to the bug tracker of the project page: https://github.com/stephanrauh/ngx-extended-pdf-viewer/issues
Have a look at this walkthrough.
The license of the ngx-extended-pdf-viewer
is the Apache V2 license.
The library is based on https://github.com/mozilla/pdf.js, which has been published under an Apache V2 license.
Some of the default icons have been published under a SIL Open Font License 1.1 license at Material Design Icons. The other icons have either been published under an Apache V2 license by Google or by the pdf.js team at Mozilla.
Thanks to the awesome pdf.js team and all the users who've reported bugs and even sent me pull requests!
Reluctantly, I have to drop support for Internet Explorer 11. The base library, Mozilla's pdf.js, now generates binaries no longer compatible with Internet Explorer 11, and it seems there's no easy fix. That's a pity because IE11 support was the original use-case of the library and because I frequently get messages from developers who need IE11 support. The last version known to be compatible is 5.3. Version 7.3.2 should be compatible, too, but a user reported crashes.
No vulnerabilities found.
Reason
30 commit(s) and 27 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 2/29 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More