Libraries and Frameworks
Integrations
This guide will show you how to integrate WebViewer into an application powered by Vite.
Prior to starting, you should have already installed Node and npm.
Get your Apryse trial 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.
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.
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.
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.
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.
We will use both these dependencies no matter what framework you are using.
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:
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.
If you do not see a vite.config.js
file in your project, you can create one and add the following code:
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:
Below are some examples of what this could look like in different frameworks:
WebViewer.js
App.js
main.js
components/HelloWorld.vue
lib/WebViewer.svelte
App.svelte
For Angular, follow the Angular Get Started Guide.
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
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!
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales