---
title: "How to build a React.js Excel (XLS/XLSX) viewer"
canonical_url: "https://www.nutrient.io/blog/how-to-build-a-react-excel-viewer/"
md_url: "https://www.nutrient.io/blog/how-to-build-a-react-excel-viewer.md"
last_updated: "2026-07-20T08:37:55.628Z"
description: "A step-by-step tutorial explaining how to build an Excel (XLS and XLSX) viewer using React with the Nutrient SDK."
---

In this blog post, learn how to build a [React Excel viewer](https://www.nutrient.io/guides/web/viewer.md) using the Nutrient Web SDK. You’ll open and view XLS and XLSX files directly in your web browser using client-side processing (no server required).

The image below shows what you’ll be building.![resulting image](@/assets/images/blog/2023/how-to-build-an-excel-viewer-using-javascript/result.png)

You can check out the [demo](https://www.nutrient.io/demo/office-viewer) to see it in action.

To build a React Excel viewer, install Nutrient Web SDK (`@nutrient-sdk/viewer`), copy its assets to the public folder, and call `NutrientViewer.load()` with the path to an XLS or XLSX file. The SDK converts the spreadsheet to PDF in the browser and renders it — no server or Microsoft Office license required.

## Opening and rendering Office documents in the browser

Nutrient Web SDK brings support for Word, Excel, and PowerPoint formats to your application, without you or your users needing any MS Office software, MS Office licenses, or third-party open source software. The technology works by converting an Office document to PDF directly in the browser, and the document is then rendered in our JavaScript viewer.

## Unlocking more capabilities with Office-to-PDF conversion

By converting an Office document to PDF using client-side JavaScript, you have the option to support a rich array of additional Office document functionality, such as:

- **Text editing** — Edit text directly in the displayed Office document.

- **Page manipulation** — Organize documents by adding, removing, or rearranging pages.

- **Annotations** — Boost collaboration by adding text highlights, comments, or stamps.

- **Adding signatures** — Draw, type, or upload a signature directly to an Office document.

[Explore Demo](https://www.nutrient.io/demo/office-viewer)

## Requirements to get started

To get started, you’ll need:

- The [latest version of Node.js](https://nodejs.org/en/).

- A package manager compatible with npm. This post contains usage examples for [Yarn](https://yarnpkg.com/) and the [npm](https://docs.npmjs.com/cli/v7/commands/npm) client (installed with Node.js by default).

## Setting up a new React project with Vite

1. To get started, create a new React project using Vite:

```bash

# Using Yarn

yarn create vite nutrient-react-example --template react

# Using npm

npm create vite@latest nutrient-react-example -- --template react

```

2. Navigate to your project directory:

```bash

cd nutrient-react-example

```

## Adding Nutrient to your project

1. First, install Nutrient as a dependency:

```bash

npm install @nutrient-sdk/viewer

# or

yarn add @nutrient-sdk/viewer

# or

pnpm install @nutrient-sdk/viewer

```

2. The Nutrient Web SDK loads its WebAssembly and supporting files from a local path, so you need to copy them to the public folder. Start by installing the required copy plugin:

```bash

npm install -D rollup-plugin-copy

```

Then, update your Vite configuration (`vite.config.ts`) to copy the SDK’s asset files during build:

```ts

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import copy from 'rollup-plugin-copy';

export default defineConfig({
	plugins: [
		copy({
			targets: [
				{
					src:
						'node_modules/@nutrient-sdk/viewer/dist/nutrient-viewer-lib',
					dest: 'public/',
				},
			],
			hook: 'buildStart',
		}),
		react(),
	],
});

```

## Displaying an Excel file in your React app

1. Add an Excel (XLS, XLSX) document you want to display to the `public` directory. You can use our [demo document](https://www.nutrient.io/downloads/chart.xlsx) as an example. Add this file to the `public` directory of your project.

2. Now that everything is set up, you’ll render the Excel file using the Nutrient SDK.

Basic usage in `App.tsx`:

```tsx

import { useEffect, useRef } from 'react';

function App() {
	const containerRef = useRef(null);

	useEffect(() => {
		const container = containerRef.current;
		let cleanup = () => {};

		(async () => {
			const NutrientViewer = (await import('@nutrient-sdk/viewer')).default;

			// Unload any previous instance.
			NutrientViewer.unload(container);

			if (container && NutrientViewer) {
				NutrientViewer.load({
					container,
					document: 'chart.xlsx',
					baseUrl: `${window.location.protocol}//${
						window.location.host
					}/${import.meta.env.PUBLIC_URL?? ''}`,
				});
			}

			cleanup = () => {
				NutrientViewer.unload(container);
			};
		})();

		return cleanup;
	}, []);

	return (
		<div
			ref={containerRef}
			style={{ height: '100vh', width: '100vw' }}
		/>
	);
}

export default App;

```

3. Start your development server:

```bash

# Using Yarn

yarn dev

# Using npm

npm run dev

```

Once the server is running, you can view and interact with your PDF directly in the browser.

<!---

> Interact with the sandbox by clicking the left rectangle icon and selecting Editor > Show Default Layout. To edit, sign in with GitHub — click the rectangle icon again and choose Sign in. To preview the result, click the rectangle icon once more and choose Editor > Embed Preview. For the full example, click the Open Editor button. Enjoy experimenting with the project!

--->

## A note about fonts

In client-side web applications for Microsoft Office-to-PDF conversion, Nutrient addresses font licensing constraints through font substitutions, typically replacing unavailable fonts with their equivalents — like Arial with Noto. For precise font matching, you can provide your own fonts, embed them into source files, or designate paths to your `.ttf` fonts for custom solutions.

## Adding even more capabilities

Once you’ve deployed your viewer, you can start customizing it to meet your specific requirements or easily add more capabilities. To help you get started, here are some of our most popular React.js guides:

- [Instant synchronization](https://www.nutrient.io/guides/web/instant-synchronization.md)

- [Document assembly](https://www.nutrient.io/guides/web/editor/merge-or-combine.md)

- [Page manipulation](https://www.nutrient.io/guides/web/editor/page-manipulation/rotate.md)

- [Editor](https://www.nutrient.io/guides/web/editor.md)

- [Forms](https://www.nutrient.io/guides/web/forms.md)

- [Signatures](https://www.nutrient.io/guides/web/signatures.md)

- [Redaction](https://www.nutrient.io/guides/web/redaction.md)

- [Document security](https://www.nutrient.io/guides/web/document-security.md)

## Conclusion

In this blog post, you learned how to build an [Excel viewer](https://www.nutrient.io/guides/web/viewer.md) using React.js with the Nutrient SDK.

If you’re looking for a way to render Office documents in your web application, then Nutrient Web SDK is a great option. It’s a powerful and flexible library that can help you provide your users with a seamless and enjoyable experience.

To get started, you can either:

- Start your [free trial](https://www.nutrient.io/try/) to test out the library and see how it works in your application.

- [Launch our demo](https://www.nutrient.io/demo/) to see the viewer in action.

## FAQ

#### How can I integrate Nutrient into a React.js project?

To integrate Nutrient, install the `@nutrient-sdk/viewer` package with npm or Yarn, copy the library assets to your public directory, and create a React component to initialize and configure Nutrient.

#### How do I display Excel (XLS/XLSX) files using Nutrient in React?

Import the Nutrient library in your React component, provide the path to your Excel document, and use `NutrientViewer.load()` to render the document.

#### Can I customize the Nutrient viewer in my React application?

Yes, you can customize the Nutrient viewer with options for initial view state, annotations, text editing, and additional functionalities.

#### Where can I find a demo of the React.js Excel viewer with Nutrient?

You can check out a demo of the React.js Excel viewer with Nutrient by visiting the [Nutrient demo page](https://www.nutrient.io/demo/).
---

## Related pages

- [The business case for accessibility: Five ways it drives enterprise value](/blog/5-ways-accessibility-drives-enterprise-value.md)
- [Accessibility Untangled Why It Matters Guide](/blog/accessibility-untangled-why-it-matters-guide.md)
- [Advanced Techniques For React Native Ui Components](/blog/advanced-techniques-for-react-native-ui-components.md)
- [`vector_store` holds your indexed documents (see the multimodal RAG post](/blog/agentic-rag.md)
- [Ai Document Automation Extraction To Action](/blog/ai-document-automation-extraction-to-action.md)
- [Ai Legal Assistant Document Authoring](/blog/ai-legal-assistant-document-authoring.md)
- [Angular File Viewer Pdf Image Office Files](/blog/angular-file-viewer-pdf-image-office-files.md)
- [Auto Tagging And Document Accessibility In Dotnet Sdk](/blog/auto-tagging-and-document-accessibility-in-dotnet-sdk.md)
- [Best Document Viewers](/blog/best-document-viewers.md)
- [The CEO’s AI playbook: Why decision architecture beats model selection](/blog/ceo-ai-playbook-decision-architecture.md)
- [1. Extract and chunk the PDF.](/blog/chat-with-pdf.md)
- [Complete Guide To Pdfjs](/blog/complete-guide-to-pdfjs.md)
- [Construction Document Data Extraction](/blog/construction-document-data-extraction.md)
- [Convert One Drive Files To Pdf In Sharepoint](/blog/convert-one-drive-files-to-pdf-in-sharepoint.md)
- [Create And Edit Pdfs In Flutter](/blog/create-and-edit-pdfs-in-flutter.md)
- [Create Pdfs With React](/blog/create-pdfs-with-react.md)
- [Creating A Document Scanner With Ocr In Python](/blog/creating-a-document-scanner-with-ocr-in-python.md)
- [Creating And Filling Pdf Forms Programmatically In Javascript](/blog/creating-and-filling-pdf-forms-programmatically-in-javascript.md)
- [The CTO’s AI playbook: Why accountability architecture beats orchestration](/blog/cto-ai-playbook-accountability-architecture.md)
- [Digital Signatures](/blog/digital-signatures.md)
- [Digital Workflow Automation](/blog/digital-workflow-automation.md)
- [Document Ai Vs Ocr](/blog/document-ai-vs-ocr.md)
- [Document Viewer](/blog/document-viewer.md)
- [Document Watermarking](/blog/document-watermarking.md)
- [Emerging threats: Your logging system may be an agentic threat vector](/blog/emerging-threats-your-logging-system.md)
- [app.py](/blog/extract-text-from-pdf-using-python.md)
- [Fillable Pdf](/blog/fillable-pdf.md)
- [How To Add Digital Signature To Pdf Using React](/blog/how-to-add-digital-signature-to-pdf-using-react.md)
- [How To Build A Dotnet Maui Pdf Viewer](/blog/how-to-build-a-dotnet-maui-pdf-viewer.md)
- [How To Build A Flutter Pdf Viewer](/blog/how-to-build-a-flutter-pdf-viewer.md)
- [or](/blog/how-to-build-a-javascript-pdf-viewer-with-pdfjs.md)
- [How To Build A Javascript Pdf Viewer](/blog/how-to-build-a-javascript-pdf-viewer.md)
- [or](/blog/how-to-build-a-nextjs-pdf-viewer.md)
- [How To Build A Powerpoint Viewer Using Javascript](/blog/how-to-build-a-powerpoint-viewer-using-javascript.md)
- [How To Build A React Native Pdf Viewer](/blog/how-to-build-a-react-native-pdf-viewer.md)
- [How To Build A React Powerpoint Viewer](/blog/how-to-build-a-react-powerpoint-viewer.md)
- [How To Build A Reactjs File Viewer](/blog/how-to-build-a-reactjs-file-viewer.md)
- [or](/blog/how-to-build-a-reactjs-pdf-viewer-with-react-pdf.md)
- [or](/blog/how-to-build-a-reactjs-pdf-viewer.md)
- [How To Build A Reactjs Viewer With Pdfjs](/blog/how-to-build-a-reactjs-viewer-with-pdfjs.md)
- [How To Build A Vuejs Pdf Viewer With Pdfjs](/blog/how-to-build-a-vuejs-pdf-viewer-with-pdfjs.md)
- [How To Build A Vuejs Pdf Viewer](/blog/how-to-build-a-vuejs-pdf-viewer.md)
- [How To Build An Android Pdf Viewer](/blog/how-to-build-an-android-pdf-viewer.md)
- [How To Build An Angular Pdf Viewer With Ng2 Pdf Viewer](/blog/how-to-build-an-angular-pdf-viewer-with-ng2-pdf-viewer.md)
- [How To Build An Angular Pdf Viewer With Pdfjs](/blog/how-to-build-an-angular-pdf-viewer-with-pdfjs.md)
- [How To Convert Docx To Pdf Using Javascript](/blog/how-to-convert-docx-to-pdf-using-javascript.md)
- [How To Convert Docx To Pdf Using Python](/blog/how-to-convert-docx-to-pdf-using-python.md)
- [How To Convert Html To Pdf Using Html2pdf](/blog/how-to-convert-html-to-pdf-using-html2pdf.md)
- [or](/blog/how-to-convert-html-to-pdf-using-react.md)
- [or](/blog/how-to-convert-html-to-pdf-using-wkhtmltopdf-and-python.md)
- [How To Convert Word To Pdf In Nodejs](/blog/how-to-convert-word-to-pdf-in-nodejs.md)
- [or](/blog/how-to-create-a-react-js-signature-pad.md)
- [How To Create Pdfs With React To Pdf](/blog/how-to-create-pdfs-with-react-to-pdf.md)
- [How To Edit Pdfs Using Ios Pdf Library](/blog/how-to-edit-pdfs-using-ios-pdf-library.md)
- [How To Embed A Pdf Viewer In Your Website](/blog/how-to-embed-a-pdf-viewer-in-your-website.md)
- [How To Extract Tables From Pdf And Images](/blog/how-to-extract-tables-from-pdf-and-images.md)
- [How To Generate Pdf From Html With Nodejs](/blog/how-to-generate-pdf-from-html-with-nodejs.md)
- [base_url tells WeasyPrint where to resolve relative asset paths](/blog/how-to-generate-pdf-reports-from-html-in-python.md)
- [Open an image.](/blog/how-to-use-tesseract-ocr-in-python.md)
- [From an HTML string.](/blog/html-in-pdf-format.md)
- [Javascript Pdf Libraries](/blog/javascript-pdf-libraries.md)
- [Linearized Pdf](/blog/linearized-pdf.md)
- [Swift Package Manager](/blog/mobile-pdf-sdk.md)
- [`elements` come from your document parser — each has a type and content.](/blog/multimodal-rag.md)
- [Nutrient Vs Conga Composer](/blog/nutrient-vs-conga-composer.md)
- [Online Document Viewer](/blog/online-document-viewer.md)
- [Open Pdf In Your Web App](/blog/open-pdf-in-your-web-app.md)
- [Pdf Extraction Benchmark Opendataloader Bench](/blog/pdf-extraction-benchmark-opendataloader-bench.md)
- [Pdf Page Labels](/blog/pdf-page-labels.md)
- [Pdf Sdk Compliance Security Checklist](/blog/pdf-sdk-compliance-security-checklist.md)
- [Pdf Sdk Performance Benchmark](/blog/pdf-sdk-performance-benchmark.md)
- [Pdf Ua Compliance Guide](/blog/pdf-ua-compliance-guide.md)
- [Pdfjs Annotation Editor Layer](/blog/pdfjs-annotation-editor-layer.md)
- [Pdfjs Area Annotations Canvas Capture](/blog/pdfjs-area-annotations-canvas-capture.md)
- [Pdfjs Coordinate Systems Pdf To Screen](/blog/pdfjs-coordinate-systems-pdf-to-screen.md)
- [Pdfjs Eventbus Guide](/blog/pdfjs-eventbus-guide.md)
- [Pdfjs Limitations Commercial Upgrade](/blog/pdfjs-limitations-commercial-upgrade.md)
- [Pdfjs Native Annotation Layer Forms](/blog/pdfjs-native-annotation-layer-forms.md)
- [Pdfjs Navigation Zoom Rotation](/blog/pdfjs-navigation-zoom-rotation.md)
- [Pdfjs Pdf Page Manipulation Pdf Lib](/blog/pdfjs-pdf-page-manipulation-pdf-lib.md)
- [Pdfjs React Viewer Setup](/blog/pdfjs-react-viewer-setup.md)
- [Pdfjs Rendering Overlays React Portals](/blog/pdfjs-rendering-overlays-react-portals.md)
- [Pdfjs Server Side Text Extraction](/blog/pdfjs-server-side-text-extraction.md)
- [Pdfjs Sticky Note Annotations](/blog/pdfjs-sticky-note-annotations.md)
- [Pdfjs Text Highlight Annotations](/blog/pdfjs-text-highlight-annotations.md)
- [Pdfjs Text Search Pdffindcontroller](/blog/pdfjs-text-search-pdffindcontroller.md)
- [Pdfjs Thumbnail Sidebar](/blog/pdfjs-thumbnail-sidebar.md)
- [Process Flows](/blog/process-flows.md)
- [React Native Pdf Annotation](/blog/react-native-pdf-annotation.md)
- [or](/blog/sample-blog-updated.md)
- [Add DWS MCP Server to your Claude Code project.](/blog/teaching-llms-to-read-pdfs.md)
- [Open an image file.](/blog/tesseract-python-guide.md)
- [Top 5 Javascript Pdf Viewers](/blog/top-5-javascript-pdf-viewers.md)
- [Convert an HTML file to PDF.](/blog/top-ten-ways-to-convert-html-to-pdf.md)
- [Vector Pdf](/blog/vector-pdf.md)
- [Wcag2 Accessibility Requirements Documents](/blog/wcag2-accessibility-requirements-documents.md)
- [Web Sdk Is Now Headless](/blog/web-sdk-is-now-headless.md)
- [What Are Annotations](/blog/what-are-annotations.md)
- [What Is A Vpat](/blog/what-is-a-vpat.md)
- [What Is Pdf Ua](/blog/what-is-pdf-ua.md)
- [Why Pdfium Is A Trusted Platform For Pdf Rendering](/blog/why-pdfium-is-a-trusted-platform-for-pdf-rendering.md)
- [Why Your Ai Agent Hallucinates Pdf Table Data](/blog/why-your-ai-agent-hallucinates-pdf-table-data.md)

