This guide shows how to build a Svelte PDF viewer using the Apryse WebViewer SDK. You'll learn how to integrate the SDK into a Svelte application to render, view, and interact with PDF documents using the WebViewer UI.
You can also download a ready-to-use GitHub sample to get started quickly, or explore the interactive Showcase demo to see WebViewer's full capabilities in action.
This guide assumes basic familiarity with Svelte development. Before you start:
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.
In this section, you’ll create a new Svelte application using npm. This project provides the foundation for integrating Apryse WebViewer. If you already have a Svelte app, skip this and continue to Install WebViewer.
webviewer-svelte project using a minimal setup:Flags are used to skip prompts during project configuration. The setup uses a SvelteKit minimal template, excludes type checking, omits project add-ons, and defaults to npm as the package manager. Select different options if preferred.
3. Navigate to your new Svelte project directory and install dependencies:
Next, install the Apryse WebViewer SDK using npm. This command adds the WebViewer package to your project, allowing you to integrate the PDF viewer and editor into your Svelte application.
After navigating to your webviewer-svelte project directory, run the following command to install WebViewer:
WebViewer needs access to its static assets at runtime, including WebAssembly modules, HTML, and CSS files. In a Svelte project, you must copy these assets into the static directory so they can be served correctly. For more, see Copying WebViewer static assets.
static/lib/webviewer directory if it doesn't already exist:2. Copy all WebViewer static assets from node_modules/@pdftron/webviewer/public into the new static/lib/webviewer directory:
Your project should now include a similar structure:
The path option used when initializing WebViewer must point to this directory (for example, /lib/webviewer). If the path is incorrect, WebViewer will fail to load.
In this section, you'll add WebViewer to your Svelte app by creating a component and initializing the viewer. This mounts the WebViewer UI and loads a document in your application.
WebViewer.svelte file in the src folder of your project:2. In Visual Studio Code, add this code to the WebViewer.svelte file and save:
src/WebViewer.svelte
3. Replace the contents of the src/routes/+page.svelte file with the following and save:
src/routes/+page.svelte
You can now load and display a PDF document in the WebViewer UI. Run your Svelte application to launch WebViewer and see the PDF in your browser.
1. From your project directory, run the following command to start the application:
A successful output looks similar to:
2. Open the localhost URL from your terminal to view the WebViewer UI and PDF document.
In this 4-minute video, learn how to install and integrate the Apryse WebViewer SDK into a Svelte project using TypeScript. You’ll set up the PDF viewer and explore the DOCX Editor.
Integrate WebViewer in a Svelte project with PDF editing and DOCX Editor.
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales