Get started with xlsx CDN
Apache License, Version 2.0 licensed
Popular library for reading, writing Excel files in browsers.
Tags:- excel
- spreadsheet
- xlsx
- xlsm
- xlsb
- parser
Stable version
Copied!
How to start using xlsx CDN
// Include the xlsx library using the CDN link
const XLSX = require('shim/xlsx');
// Read the Excel file as ArrayBuffer
fetch('path/to/your/file.xlsx')
.then((response) => response.arrayBuffer())
.then((arrayBuffer) => {
// Create workbook from ArrayBuffer
const workbook = XLSX.read(new Uint8Array(arrayBuffer), { cellStyles: true });
// Select the first worksheet
const worksheetName = workbook.SheetNames[0];
const worksheet = workbook.Sheets[worksheetName];
// Get data as JSON object
const data = XLSX.utils.sheet_to_json(worksheet, { header: 1 });
// Log the data
console.log(data);
})
.catch((error) => {
console.error('Error:', error);
});
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
All versions
0.10.0
0.10.1
0.10.2
0.10.3
0.10.4
0.10.5
0.10.6
0.10.7
0.10.8
0.10.9
0.11.0
0.11.1
0.11.10
0.11.11
0.11.12
0.11.13
0.11.14
0.11.15
0.11.16
0.11.17
0.11.18
0.11.19
0.11.2
0.11.3
0.11.4
0.11.5
0.11.6
0.11.7
0.11.8
0.11.9
0.12.0
0.12.1
0.12.10
0.12.11
0.12.12
0.12.13
0.12.2
0.12.3
0.12.4
0.12.5
0.12.6
0.12.7
0.12.8
0.12.9
0.13.0
0.13.1
0.13.2
0.13.3
0.13.4
0.13.5
0.14.0
0.14.1
0.14.2
0.14.3
0.14.4
0.14.5
0.15.0
0.15.1
0.15.2
0.15.3
0.15.4
0.15.5
0.15.6
0.16.0
0.16.1
0.16.2
0.16.3
0.16.4
0.16.5
0.16.6
0.16.7
0.16.8
0.16.9
0.17.0
0.17.1
0.17.2
0.17.3
0.17.4
0.17.5
0.18.0
0.18.1
0.18.2
0.18.3
0.18.4
*** 0.18.5
0.4.3
0.5.10
0.5.10-a
0.5.10-b.3
0.5.11
0.5.12
0.5.13
0.5.13-a
0.5.14
0.5.15
0.5.16
0.5.17
0.5.6
0.5.7
0.5.8
0.5.9
0.5.9-a
0.6.0
0.6.1
0.6.1-a
0.6.2
0.7.0
0.7.1
0.7.10
0.7.11
0.7.12
0.7.2
0.7.2-a
0.7.3
0.7.4
0.7.5
0.7.6-b
0.7.6-c
0.7.6-g
0.7.6-h
0.7.6-i
0.7.7
0.7.8
0.7.9
0.8.0
0.8.1
0.8.2
0.8.3
0.8.4
0.8.5
0.8.6
0.8.7
0.8.8
0.9.0
0.9.1
0.9.10
0.9.11
0.9.12
0.9.13
0.9.2
0.9.3
0.9.4
0.9.5
0.9.6
0.9.7
0.9.8
0.9.9