Socket
Socket
Sign inDemoInstall

pspdfkit

Package Overview
Dependencies
4
Maintainers
3
Versions
108
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pspdfkit

View and annotate PDF files in your web app. Full support for mobile and desktop. Runs in the browser using WASM.


Version published
Weekly downloads
43K
decreased by-24.92%
Maintainers
3
Created
Weekly downloads
 

Readme

Source

PSPDFKit for Web

Document Viewing and Editing in the Browser

PSPDFKit for Web is a secure JavaScript PDF library for viewing, annotating, and editing PDFs, Office documents, TIFFs, JPGs, and PNGs directly in the browser. It offers developers a way to quickly add document and image functionality to any web application. It's fully compatible with React, Angular, Vue.js, Svelte, and any other JavaScript or TypeScript framework.

  • Customizable — Robust API for configuring behavior and appearance
  • Client Side — Workload is offloaded to client (no server needed)
  • Secure — Battle-tested, reliable PDFium-based PDF rendering engine
  • Office Document Support — View and convert Office documents without third-party dependencies
Image showcasing the popular features of PSPDFKit for Web

Getting Started

The guide below explains how to integrate PSPDFKit for Web into a Vanilla JavaScript project. For other scenarios, refer to the step-by-step guides.

  1. Go to your project's root folder, and run the following command in the terminal. It installs the PSPDFKit npm package and adds it as a project dependency:
npm install --save pspdfkit
  1. Run the following command to copy the PSPDFKit for Web distribution to the assets directory in your project’s root folder:
cp -R ./node_modules/pspdfkit/dist/ ./assets/
  1. Rename the PDF document you want to display in your application to document.pdf, and then add the PDF document to your project’s root directory. You can use this demo document as an example.

  2. Add an empty <div> element with a defined width and height to where PSPDFKit will be mounted:

<div id="pspdfkit" style="width: 100%; height: 100vh;"></div>
  1. Add the following code to the main JavaScript file of your application. This imports and instantiates PSPDFKit for Web:
import "./assets/pspdfkit.js";

const baseUrl = `${window.location.protocol}//${window.location.host}/assets/`;

PSPDFKit.load({
	baseUrl,
	container: "#pspdfkit",
	document: "document.pdf"
})

Web Demos

File Type Support

PSPDFKit for Web enables client-side viewing and conversion of PDF, Word, Excel, PowerPoint, TIFF, JPG, and PNG files directly on any browser — no server dependencies or MS Office licenses required.

  • PDF, PDF/A (1, 2, 3, 4)
  • DOCX, DOC, DOTX, DOCM, XLSX, XLS, XLSM, PPTX, PPT, PPTM
  • PNG, JPEG, JPG, TIFF, TIF

Browser Support

PSPDFKit for Web supports the latest versions of all commonly used browsers: Chrome, Mozilla Firefox, Safari, Edge, and Firefox ESR.

Integrations

PSPDFKit for Web is compatible with Salesforce, SharePoint, Microsoft Teams, and Microsoft OneDrive.

Documentation

PSPDFKit offers comprehensive guides and code samples to help you quickly integrate and customize your application. It comes with full technical support that includes direct access to the engineers who built the product. Whether you have questions getting started or you want to know how to best integrate new features into your app, we’re here to help you find a solution.

Most popular guides:

API

Read the full API reference.

Changelog

For a detailed list of the changes included in each version, please see the changelog.

License and Support

PSPDFKit is a commercial product that offers a free trial license to evaluate and integrate it into your product. Visit our pricing page to learn more about licensing our solution.

Copyright © 2010-2024 PSPDFKit GmbH.

Keywords

FAQs

Last updated on 02 May 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc