Integrate WebViewer with Vite

This guide will show you how to integrate WebViewer into an application powered by Vite.

Prerequisites

Prior to starting, you should have already installed Node and npm.

Get your Apryse trial key.

License Key

Apryse collects some data regarding your usage of the SDK for product improvement.

If you wish to continue without data collection, contact us and we will email you a no-tracking trial key for you to get started.

Quick start video

This video teaches you the fundamentals of installing and initializing WebViewer in any web application. If you wish, you may skip this section and proceed to the steps below.

1. Scaffold the project

Note

If you already have a project, skip to step 2

We will use the Vite CLI to generate our project for us.

First, run the following command and follow the prompts.

shell

1npm create vite@latest

You can choose any framework you wish. You may also choose to use JavaScript or Typescript.

Now, navigate into your newly created project and run npm install to install Vite dependencies.

shell

1cd {your_project_name}
2npm install

2. Install WebViewer and other dependencies

Next we will install WebViewer and a plugin called vite-plugin-static-copy which we will use to copy WebViewer's static assets into our public folder.

shell

1npm i @pdftron/webviewer vite-plugin-static-copy

We will use both these dependencies no matter what framework you are using.

3. Copy static WebViewer assets

WebViewer comes with many static assets (such as Web Assembly Modules) that cannot be bundled directly by Vite. Instead, these static assets need to be served from the filesystem.

To do this, we must copy these static WebViewer assets into the public folder created by Vite.

We will use the vite-plugin-static-copy plugin we installed earlier.

In vite.config, we we will add viteStaticCopy plugin to the plugins array like so:

JavaScript

1import { defineConfig } from 'vite'
2import react from '@vitejs/plugin-react'
3import { viteStaticCopy } from 'vite-plugin-static-copy'
4
5// https://vite.dev/config/
6export default defineConfig({
7 plugins: [react(), viteStaticCopy({
8 targets: [
9 {
10 src: 'node_modules/@pdftron/webviewer/public/*',
11 dest: 'webviewer'
12 }
13 ]
14 })],
15})

If you are using a different framework than React, your config file might look slightly different. What's important is that we are adding the viteStaticCopy plugin to the plugins array.

No vite.config.js?

If you do not see a vite.config.js file in your project, you can create one and add the following code:

JavaScript

1import { defineConfig } from 'vite'
2import { viteStaticCopy } from 'vite-plugin-static-copy'
3
4// https://vite.dev/config/
5export default defineConfig({
6 plugins: [viteStaticCopy({
7 targets: [
8 {
9 src: 'node_modules/@pdftron/webviewer/public/*',
10 dest: 'webviewer'
11 }
12 ]
13 })],
14})
15

4. Initialize WebViewer

Now all our configuration is done and we are ready to start using WebViewer.

Initialization will vary depending on your framework, but in general the process is as follows:

  1. Import WebViewer
  2. Create a DOM element to mount WebViewer to
  3. Call the WebViewer constructor and provide the DOM element you want to mount it to and the path to your static WebViewer assets we copied in the previous step

Below are some examples of what this could look like in different frameworks:

JavaScript

WebViewer.js

1import WebViewer from "@pdftron/webviewer";
2import { useEffect, useRef } from "react";
3
4export default function WebViewerComponent() {
5
6 const ref = useRef(null);
7
8 useEffect(() => {
9 WebViewer({
10 path: '/webviewer',
11 licenseKey: 'YOUR_LICENSE_KEY',
12 }, ref.current)
13 .then((instance) => {
14 // Use WebViewer APIs here
15 })
16 }, [])
17
18 return (
19 <div ref={ref} style={{ height: '100%' }}>
20
21 </div>
22 )
23}

JavaScript

App.js

1import './App.css'
2import WebViewerComponent from './WebViewer'
3
4function App() {
5
6 return (
7 <div>
8 <WebViewerComponent />
9 </div>
10 )
11}
12
13export default App
14

Remove React Strict Mode

When working with WebViewer + React, we recommend disabling Strict Mode in React, since strict mode will cause WebViewer to mount twice to the same DOM element which can cause unwanted side effects.

To turn off strict mode, delete the <StrictMode> wrapper in main.js

Clean up CSS

If you started from scratch and used the Vite scaffolding tool, the default CSS it ships with may interfere with the styles. If WebViewer is not showing up, we recommend deleting all the styles from any CSS files set up by Vite.

You should now be able to run your app and see WebViewer mounted on the page!

Next steps

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales