12 KiB
| title | sidebar_label | description | pagination_prev | pagination_next | sidebar_custom_props | ||
|---|---|---|---|---|---|---|---|
| Visualizing Data in VS Code | Visual Studio Code | View Excel files directly in VS Code. Seamlessly browse spreadsheet data using SheetJS. Navigate between worksheets and pages of data with a responsive interface. | demos/cloud/index | demos/bigdata/index |
|
import current from '/version.js'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import CodeBlock from '@theme/CodeBlock';
SheetJS is a JavaScript library for reading and writing data from spreadsheets.
Visual Studio Code is a popular code editor that supports JavaScript extensions for customizing and enhancing functionality.
The "Complete Example" uses SheetJS in a VS Code extension to view Excel files directly within the editor. The extension leverages the VS Code "WebView API"1 and "Custom Editor API"2 to display spreadsheet data as HTML tables.
:::tip pass
"SheetJS Spreadsheet Viewer" is a sample extension based on this demo. It is available on Open VSX and VSCode Marketplace
The source code is available on the SheetJS Git server. Feedback and contributions are welcome!
:::
:::note Tested Deployments
This demo was verified in the following deployments:
| Platform | Architecture | Date |
|---|---|---|
| VSCodium 1.109 | darwin-arm |
2026-03-05 |
| VS Code 1.110.0 | win11-arm |
2026-03-05 |
| Antigravity 1.19.6 | linux-arm |
2026-03-05 |
:::
Integration Details
The SheetJS NodeJS Module can be imported from any component or script in the extension.
:::caution pass
The SheetJS NodeJS module must be installed as a development dependency. If the
module is installed as a normal dependency, the vsce3 command-line tool
will fail to package or publish the exxtension.
{\ npm rm --save xlsx npm i --save-dev https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz}
{\ pnpm rm xlsx pnpm install -D https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz}
{\ yarn remove xlsx yarn add -D https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz}
:::
Extension Architecture
The VS Code Spreadsheet viewer extension has three main components:
- Extension Entry Point: Registers the extension with VS Code
- Custom Editor Provider: Handles Excel files and converts them to web content
- WebView Content: Displays Excel data as HTML tables
The extension uses VS Code's Custom Editor API2 to register as a handler for Excel files. When a file is opened,
SheetJS parses it and displays the data in a WebView component.
Extension Entry Point
The main entry point registers the custom editor provider:
import * as vscode from 'vscode';
// highlight-start
import { ExcelEditorProvider } from './excelEditorProvider';
// highlight-end
export function activate(context: vscode.ExtensionContext) {
// SheetJS Spreadsheet Viewer extension activating...
// highlight-start
const provider = ExcelEditorProvider.register(context);
context.subscriptions.push(provider);
// highlight-end
}
export function deactivate() {}
The custom editor4 is configured to support specific file types, giving us complete control over how each file is
presented to the user. Additionally, custom document5 enables us to maintain and persist the state of each individual
file that's opened.
// A simple class to store document state (one per opened file) class ExcelDocument implements vscode.CustomDocument { constructor(public readonly uri: vscode.Uri) {} dispose() {} }
export class ExcelEditorProvider implements vscode.CustomReadonlyEditorProvider { // ... public static register(context: vscode.ExtensionContext): vscode.Disposable { return vscode.window.registerCustomEditorProvider( 'excelViewer.spreadsheet', new ExcelEditorProvider(), { webviewOptions: { retainContextWhenHidden: true } } // keep webview state when hidden ); } // ... }`}
Reading Files
The extension reads Excel files using the VS Code filesystem API and passes the data to SheetJS for parsing:
{`export class ExcelEditorProvider implements vscode.CustomReadonlyEditorProvider { // ... private async loadWorkbook(document: ExcelDocument, webviewPanel: vscode.WebviewPanel): Promise { const data: Uint8Array = await vscode.workspace.fs.readFile(document.uri); const options: XLSX.ParsingOptions = {
type: 'array',
cellStyles: true,
cellDates: true,
};
return XLSX.read(new Uint8Array(data), options); // returns a XLSX.WorkBook
}
// This is called when the first time an editor for a given resource is opened
async openCustomDocument(uri: vscode.Uri): Promise<ExcelDocument> {
return new ExcelDocument(uri);
}
// This is called whenever the user opens a new editor
async resolveCustomEditor(document: ExcelDocument, webviewPanel: vscode.WebviewPanel): Promise<void> {
const wb: XLSX.WorkBook = await this.loadWorkbook(document, webviewPanel);
const htmlTable = XLSX.utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
webviewPanel.webview.html = \`<!DOCTYPE html><html><body>\${htmlTable}</body></html>\`;
}
}`}
Usage Flow
sequenceDiagram
actor User
participant VSCode as VS Code
participant Provider as ExcelEditorProvider
participant SheetJS
participant WebView
User->>VSCode: Open .xlsx file
VSCode->>Provider: openCustomDocument(uri)
Provider-->>VSCode: return ExcelDocument
VSCode->>Provider: resolveCustomEditor(document, webviewPanel)
Provider->>VSCode: workspace.fs.readFile(document.uri)
VSCode-->>Provider: return file data
Provider->>SheetJS: XLSX.read(data, options)
SheetJS-->>Provider: return workbook
Provider->>SheetJS: XLSX.utils.sheet_to_html(sheet)
SheetJS-->>Provider: return HTML
Provider->>WebView: set webview.html
WebView-->>User: Display Excel data
Complete Example
:::caution pass
To avoid conflicts with existing extensions, it is strongly recommended to test with a different VSCode fork. For example, VSCode and Antigravity users should install and use VSCodium for extension development.
:::
-
Download the
pres.xlsxsample file. -
Create a new VS Code extension
npx --package yo --package generator-code -- yo code
When prompted, enter the following options:
What type of extension do you want to create?: SelectNew Extension (TypeScript)and press EnterWhat's the name of your extension?: Typesheetjs-demoand press EnterWhat's the identifier of your extension?: Press Enter (use the defaultsheetjs-demo)What's the description of your extension?: Press Enter (leave blank)Initialize a git repository?: Typenand press EnterWhich bundler to use?: Selectwebpackand press EnterWhich package manager to use?: Selectpnpmand press Enter
- Install the SheetJS library and start the dev server:
{\ cd sheetjs-demo pnpm install -D https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz pnpm run watch }
-
Launch a new editor window using the desired VSCode fork and open the newly created
sheetjs-demofolder. -
Save the following codeblock to
src/extension.ts:
import * as vscode from 'vscode';
import * as XLSX from 'xlsx';
class ExcelDocument implements vscode.CustomDocument {
constructor(public readonly uri: vscode.Uri) { }
dispose() { }
}
class ExcelEditorProvider implements vscode.CustomReadonlyEditorProvider<ExcelDocument> {
// This is called when the first time an editor for a given resource is opened
async openCustomDocument(uri: vscode.Uri): Promise<ExcelDocument> {
return new ExcelDocument(uri);
}
// This is called whenever the user opens a new editor
async resolveCustomEditor(document: ExcelDocument, webviewPanel: vscode.WebviewPanel): Promise<void> {
const data: Uint8Array = await vscode.workspace.fs.readFile(document.uri);
const options: XLSX.ParsingOptions = {
type: 'array',
cellStyles: true,
cellDates: true,
};
const wb: XLSX.WorkBook = XLSX.read(new Uint8Array(data), options);
const htmlTable = XLSX.utils.sheet_to_html(wb.Sheets[wb.SheetNames[0]]);
webviewPanel.webview.html = `<!DOCTYPE html><html><body>${htmlTable}</body></html>`;
}
}
export function activate(context: vscode.ExtensionContext) {
const provider = vscode.window.registerCustomEditorProvider(
'excelViewer.spreadsheet',
new ExcelEditorProvider(),
{ webviewOptions: { retainContextWhenHidden: true } } // keep webview state when hidden
);
context.subscriptions.push(provider);
}
export function deactivate() {}
- Add the highlighted lines to the
contributessection ofpackage.json:
"contributes": {
// highlight-start
"customEditors": [
{
"viewType": "excelViewer.spreadsheet",
"displayName": "SheetJS Demo",
"selector": [
{ "filenamePattern": "*.xlsx" },
{ "filenamePattern": "*.xls" }
]
}
],
// highlight-end
"commands": [
{
"command": "sheetjs-demo.helloWorld",
"title": "Hello World"
}
]
},
- In the editor, open the Command Palette (Help > "Show All Commands" from the
menu), type
Debug: Startand selectDebug: Start Debugging.
This will compile and run the extension in a new Extension Development Host window.
- Drag and drop the
pres.xlsxtest file into the new window. If drag and drop is not available, click "Open..." in the Welcome screen and select the file.
A new pres.xlsx tab will show the contents of the file.
:::info pass
When this demo was last tested, the default project assumed VSCode version 1.109.0 or later. Antigravity 1.19.6 is aligned to VSCode 1.107.0. The default extension will not run in Antigravity.
This can be fixed by changing the vscode field in package.json. When this
demo was last tested, it was safe to set a minimum version of ^1.100.0:
"engines": {
// highlight-next-line
"vscode": "^1.100.0"
}
:::
-
See
Webview APIin the VSCode documentation for more details. ↩︎ -
See
Custom Editor APIin the VSCode documentation for more details. ↩︎ -
See
Custom Editorin the VSCode documentation for more details. ↩︎ -
See
CustomDocumentin the VSCode documentation for more details. ↩︎

