Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-extended-pdf-viewer

Package Overview
Dependencies
Maintainers
1
Versions
636
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-extended-pdf-viewer

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 looks exactly like the PDF viewer of the browser.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
88K
decreased by-3.8%
Maintainers
1
Weekly downloads
 
Created
Source

ngx-extended-pdf-viewer

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 looks exactly like the PDF viewer of the browser.

State of the art

The library is very young, but it should already be useful. Use at own risk.

The library has been developed with Angular 6, so probably npm will complain if you're using an older version of Angular. In theory, ngx-extended-pdf-viewer should be compatible with every Angular version since 2.0, but that hasn't been tested yet.

How to use the library

There's a minimalistic demo project at https://github.com/stephanrauh/ExploringAngular/embedding-pdf.

  1. Install the library with npm i ngx-extended-pdf-viewer --save

  2. Open the file "angular.json" (or ".angular-cli.json" if you're using an older version of Angular) and add these two JavaScript files to the "scripts" section:

        "scripts": [
          "node_modules/ngx-extended-pdf-viewer/assets/pdf.js",
          "node_modules/ngx-extended-pdf-viewer/assets/pdf.worker.js"
        ]
    
  3. Copy the images from the assets folder of the library to the assets folder of your project. Modify the "angular.json" (or ".angular-cli.json") file like so:

       "assets": [
          "src/favicon.ico",
          "src/assets",
          {
            "glob": "**/*",
            "input": "./node_modules/ngx-extended-pdf-viewer/assets/images",
            "output": "./assets/images"
          }
        ],
        ...
    

    The first two entries of the "assets" key should already be there. You only have to add the Json object beginning with "glob".

  4. Add "NgxExtendedPdfViewerModule" to the import section of your module file. If you IDE doesn't find the import automatically, here it is:

        import { NgxExtendedPdfViewerModule } from 'ngx-extended-pdf-viewer';
    
  5. Now you can display the PDF file using "".

Configuration

Currently, the library is in a very early stage, so there's almost nothing to configure.

src defines the URL of the PDF file to display.

Feedback, pull requests and bug reports

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

License and Kudos

The library is based on:

https://github.com/mozilla/pdf.js, which has been published under an Apache V2 license https://github.com/legalthings/pdf.js-viewer, which has also been published under an Apache V2 license.

Hence the licence of the ngx-extended-pdf-viewer is the Apache V2 license, too.

FAQs

Package last updated on 13 May 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc