## Getting Started ### Installation **Standalone Browser Scripts** The complete browser standalone build is saved to `dist/xlsx.full.min.js` and can be directly added to a page with a ` ``` Each standalone release script is available at . The latest version uses the `latest` tag: ```html ``` A specific release can be referenced by version: ```html ``` For production use, scripts should be downloaded and added to a public folder alongside other scripts.
Browser builds (click to show) The complete single-file version is generated at `dist/xlsx.full.min.js` `dist/xlsx.core.min.js` omits codepage library (no support for XLS encodings) A slimmer build is generated at `dist/xlsx.mini.min.js`. Compared to full build: - codepage library skipped (no support for XLS encodings) - no support for XLSB / XLS / Lotus 1-2-3 / SpreadsheetML 2003 / Numbers - node stream utils removed These scripts are also available on the CDN: ```html ```
With [bower](https://bower.io/search/?q=js-xlsx): ```bash $ bower install js-xlsx ``` **ECMAScript Modules** The ECMAScript Module build is saved to `xlsx.mjs` and can be directly added to a page with a `script` tag using `type="module"`: ```html ``` The NodeJS package also exposes the module with the `module` parameter, which is supported in Angular and other projects: ```ts import { read, writeFileXLSX } from "xlsx"; /* load the codepage support library for extended support with older formats */ import { set_cptable } from "xlsx"; import * as cptable from 'xlsx/dist/cpexcel.full.mjs'; set_cptable(cptable); ``` **Deno** `xlsx.mjs` can be imported in Deno: ```ts // @deno-types="https://cdn.sheetjs.com/xlsx-latest/package/types/index.d.ts" import * as XLSX from 'https://cdn.sheetjs.com/xlsx-latest/package/xlsx.mjs'; /* load the codepage support library for extended support with older formats */ import * as cptable from 'https://cdn.sheetjs.com/xlsx-latest/package/dist/cpexcel.full.mjs'; XLSX.set_cptable(cptable); ``` **NodeJS** Tarballs are available on . is a link to the latest version and will refresh on each release. Each individual version can be referenced using a similar URL pattern. is the URL for `0.18.6` Tarballs can be directly installed using a package manager: ```bash $ npm install https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz # npm $ pnpm install https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz # pnpm $ yarn add https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz # yarn ``` For general stability, "vendoring" modules is the recommended approach: 1) Download the tarball (`xlsx-.tgz`) for the desired version. 2) Create a `vendor` subdirectory at the root of your project and move the tarball to that folder. Add it to your project repository. 3) Install the tarball using a package manager: ```bash # note : replace $VERSION with the actual version (e.g. latest or 0.18.6) $ npm install --save file:vendor/xlsx-$VERSION.tgz # npm $ pnpm install --save file:vendor/xlsx-$VERSION.tgz # pnpm $ yarn add file:vendor/xlsx-$VERSION.tgz # yarn ``` The package will be installed and accessible as `xlsx`. By default, the module supports `require`: ```js var XLSX = require("xlsx"); ``` The module also ships with `xlsx.mjs` for use with `import`: ```js import * as XLSX from 'xlsx/xlsx.mjs'; /* load 'fs' for readFile and writeFile support */ import * as fs from 'fs'; XLSX.set_fs(fs); /* load 'stream' for stream support */ import { Readable } from 'stream'; XLSX.stream.set_readable(Readable); /* load the codepage support library for extended support with older formats */ import * as cpexcel from 'xlsx/dist/cpexcel.full.mjs'; XLSX.set_cptable(cpexcel); ``` **Photoshop and InDesign** `dist/xlsx.extendscript.js` is an ExtendScript build for Photoshop and InDesign. is the latest build. It can be directly referenced with a `#include` directive: ```extendscript #include "xlsx.extendscript.js" ```
Internet Explorer and ECMAScript 3 Compatibility (click to show) For broad compatibility with JavaScript engines, the library is written using ECMAScript 3 language dialect as well as some ES5 features like `Array#forEach`. Older browsers require shims to provide missing functions. To use the shim, add the shim before the script tag that loads `xlsx.js`: ```html ``` The script also includes `IE_LoadFile` and `IE_SaveFile` for loading and saving files in Internet Explorer versions 6-9. The `xlsx.extendscript.js` script bundles the shim in a format suitable for Photoshop and other Adobe products.