The node version installs a binary `xlsx2csv` which can read XLSX/XLSM files and output the contents in various formats. The source is available at `xlsx2csv.njs` in the bin directory.
Note that older versions of IE does not support HTML5 File API, so the base64 mode is provided for testing. On OSX you can get the base64 encoding by running:
Some helper functions in `XLSX.utils` generate different views of the sheets:
-`XLSX.utils.sheet_to_csv` generates CSV
-`XLSX.utils.sheet_to_row_object_array` interprets sheets as tables with a header column and generates an array of objects
-`XLSX.utils.get_formulae` generates a list of formulae
## Notes
`.SheetNames` is an ordered list of the sheets in the workbook
`.Sheets[sheetname]` returns a data structure representing the sheet. Each key
that does not start with `!` corresponds to a cell (using `A-1` notation).
`.Sheets[sheetname][address].v` returns the value of the specified cell and `.Sheets[sheetname][address].t` returns the type of the cell (constrained to the enumeration `ST_CellType` as documented in page 4215 of ISO/IEC 29500-1:2012(E) )
Please consult the attached LICENSE file for details. All rights not explicitly granted by the Apache 2.0 license are reserved by the Original Author.
It is the opinion of the Original Author that this code conforms to the terms of the Microsoft Open Specifications Promise, falling under the same terms as OpenOffice (which is governed by the Apache License v2). Given the vagaries of the promise, the Original Author makes no legal claim that in fact end users are protected from future actions. It is highly recommended that, for commercial uses, you consult a lawyer before proceeding.