5.2 KiB
| pagination_prev | sidebar_position | title |
|---|---|---|
| csf/index | 5 | API Reference |
import current from '/version.js';
This section lists the functions defined in the library.
:::info pass
The "SheetJS Data Model" section covers spreadsheet features.
The API functions primarily focus on conversions between data representations.
:::
Library access
Using the "Standalone" scripts,
XLSX is added to the window or other global object.
Using the "NodeJS" module, the
XLSX variable refers to the CommonJS export:
var XLSX = require("xlsx");
Using a framework, the XLSX
variable refers to the glob import:
import * as XLSX from "xlsx";
Parsing functions
XLSX.read(data, read_opts) attempts to parse data.
XLSX.readFile(filename, read_opts) attempts to read filename and parse.
Parse options are described in the Parsing Options section.
Writing functions
XLSX.write(wb, write_opts) attempts to write the workbook wb.
XLSX.writeXLSX(wb, write_opts) attempts to write the workbook in XLSX format.
XLSX.writeFile(wb, filename, write_opts) attempts to write wb to filename.
In browser-based environments, it will attempt to force a client-side download.
XLSX.writeFileXLSX(wb, filename, write_opts) attempts to write an XLSX file.
XLSX.writeFileAsync(filename, wb, o, cb) attempts to write wb to filename.
If o is omitted, the writer will use the third argument as the callback.
Write options are described in the Writing Options section.
Utilities
Utilities are available in the XLSX.utils object.
The methods are covered in dedicated pages:
Cell and cell address manipulation:
encode_row / decode_rowconverts between 0-indexed rows and 1-indexed rows.encode_col / decode_colconverts between 0-indexed columns and column names.encode_cell / decode_cellconverts cell addresses.encode_range / decode_rangeconverts cell ranges.
"Arrays of Data" section of "Utility Functions"
Importing Data:
aoa_to_sheetconverts an array of arrays of JS data to a worksheet.json_to_sheetconverts an array of JS objects to a worksheet.sheet_add_aoaadds an array of arrays of JS data to an existing worksheet.sheet_add_jsonadds an array of JS objects to an existing worksheet.
Exporting Data:
sheet_to_jsonconverts a worksheet object to an array of JSON objects.
"HTML" section of "Utility Functions"
Reading from HTML:
table_to_sheetconverts a DOM TABLE element to a worksheet.table_to_bookconverts a DOM TABLE element to a worksheet.sheet_add_domadds data from a DOM TABLE element to an existing worksheet.
Writing HTML:
sheet_to_htmlgenerates HTML output.
"CSV and Text" section of "Utility Functions"
Writing CSV and Text:
sheet_to_csvgenerates delimiter-separated-values output.sheet_to_txtgenerates UTF-16 formatted text.
"Array of Formulae" section of "Utility Functions"
Exporting Formulae:
sheet_to_formulaegenerates a list of formulae or cell value assignments.
"Workbook Helpers" section of "Utility Functions"
Workbook Operations:
book_newcreates a workbook objectbook_append_sheetadds a worksheet to a workbook
Miscellaneous
format_cellgenerates the text value for a cell (using number formats).sheet_set_array_formulaadds an array formula to a worksheet
Platform-Specific Functions
NodeJS Streaming Write functions
XLSX.stream contains a set of streaming write functions for NodeJS streams:
to_csv(sheet, opts)streams CSV rowsto_html(sheet, opts)streams an HTML table incrementallyto_json(sheet, opts)streams JS objects (object-mode stream)to_xlml(book, opts)streams a SpreadsheetML2003 workbook incrementally
Stream methods are described in the "Stream Export" section.
ESM Helpers
Due to broad inconsistencies in ESM implementations, the mjs build does not
import any dependencies. Instead, they must be manually passed to the library:
XLSX.set_cptable sets the internal codepage instance. This provides support
for different languages in XLS or text parsing.
XLSX.set_fs set fs instance (using readFileSync and writeFileSync). This
provides NodeJS ESM support for XLSX.readFile and XLSX.writeFile.
XLSX.utils.set_readable supplies a NodeJS stream.Readable constructor. This
provides NodeJS ESM support for the streaming operations.
ESM helper functions are described in the "NodeJS" Installation section
Miscellaneous
XLSX.version is the version of the library.
:::note pass
The current version is {current}
:::
XLSX.SSF is an embedded version of the format library.
XLSX.CFB is an embedded version of the container library.