How can I help you?
Getting Started with React Server-Backed PDF Viewer Component
24 Jun 20266 minutes to read
This section explains how to create a simple React application and add the server-backed React PDF Viewer component with the minimum required setup.
NOTE
Starting with the 2026 Vol 2 main release (June 2026), no new features will be added to the Server PDF Viewer, as almost all of the PDF Viewer functionalities are now available in the Standalone PDF Viewer. If you are currently using the server-backed PDF Viewer, please refer to the migration documentation to transition to the Standalone PDF Viewer.
Prerequisites
System requirements for React components
Create a React application
Use Vite to create a new React application, as it provides a faster development environment, smaller bundle sizes, and optimized production builds.
To create a new React application, run one of the following commands based on your preferred environment.
npm create vite@latest pdf-viewer-app -- --template react
cd pdf-viewer-appnpm create vite@latest pdf-viewer-app -- --template react-ts
cd pdf-viewer-appInstall the Syncfusion® React PDF Viewer packages
Install the React PDF Viewer package from npm using the following command:
npm install @syncfusion/ej2-react-pdfviewer --saveAdd CSS references
Add the following PDF Viewer and dependent component style references to the src/index.css file.
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import "../node_modules/@syncfusion/ej2-pdfviewer/styles/material.css";Add the React PDF Viewer component to the application
Add the React PDF Viewer component to your src/App.jsx or src/App.tsx file.
import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView,
ThumbnailView, Print, TextSelection, Annotation, TextSearch, FormFields, FormDesigner,
PageOrganizer, Inject} from '@syncfusion/ej2-react-pdfviewer';
export default function App() {
return (
<PdfViewerComponent id="container"
// Specifies the path or Base64 string of the PDF document to be loaded in the PDF Viewer.
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
// Specifies the backend service URL that processes and streams PDF data
serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer">
// Specifies the modules required for the PDF Viewer
<Inject services={[ Toolbar, Magnification, Navigation, Annotation, LinkAnnotation,
BookmarkView, ThumbnailView, Print, TextSelection, TextSearch,
FormFields, FormDesigner, PageOrganizer ]}/>
</PdfViewerComponent>
);
}import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView,
ThumbnailView, Print, TextSelection, Annotation, TextSearch, FormFields, FormDesigner,
PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
export default function App() {
return (
<PdfViewerComponent id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer">
<Inject services={[ Toolbar, Magnification, Navigation, Annotation, LinkAnnotation,
BookmarkView, ThumbnailView, Print, TextSelection, TextSearch,
FormFields, FormDesigner, PageOrganizer ]}/>
</PdfViewerComponent>
);
}NOTE
The Web API hosted link https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer utilized in the PDF viewer’s serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the GitHub Web Service example or Docker image for hosting your own web service and use for the serviceUrl property. We strongly recommend using the standalone mode.
How to Create and Run a Custom PDF Viewer Web Service
Run the application
Run the following command to start the React application:
npm run devAfter the application starts, open the localhost URL shown in the terminal to view the React PDF Viewer in the browser. The output will appear as follows:

You can also explore the PDF Viewer interactively using the live sample below.
NOTE
When configuring the server-backed PDF viewer, it’s Essential® to understand that there is no need to include the pdfium.js and pdfium.wasm files. Unlike the standalone PDF viewer, which relies on these files for local rendering, the server-backed PDF viewer fetches and renders PDFs directly from the server. Consequently, you can exclude the copy command for deployment process, as they are not required to load and display PDFs in this context.
NOTE
For hosting the web service on the Linux platform, ensure to include the SkiaSharp.NativeAssets.Linux v3.119.1. Additionally, for AWS environments, utilize the following packages:
| Amazon Web Services (AWS) | NuGet package name |
|---|---|
| AWS Lambda | SkiaSharp.NativeAssets.Linux v3.119.1 |
| AWS Elastic Beanstalk | SkiaSharp.NativeAssets.Linux.NoDependencies v3.119.1 |