Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 28, 2024 via pnpm

xlsx 0.15.6

SheetJS Spreadsheet data parser and writer
Package summary
Share
10
issues
4
high severity
vulnerability
4
6
moderate severity
vulnerability
6
2
licenses
11
Apache-2.0
2
MIT
Package created
6 Dec 2013
Version published
15 Mar 2020
Maintainers
1
Total deps
13
Direct deps
8
License
Apache-2.0

Issues

10

4 high severity issues

high
Recommendation: Upgrade to version 0.19.3 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.20.2 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.19.3 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.20.2 or later
via: xlsx@0.15.6
Collapse
Expand

6 moderate severity issues

moderate
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Recommendation: Upgrade to version 0.17.0 or later
via: xlsx@0.15.6
Collapse
Expand

Licenses

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
11 Packages, Including:
adler-32@1.2.0
adler-32@1.3.1
cfb@1.2.2
codepage@1.14.0
crc-32@1.2.2
exit-on-epipe@1.0.1
frac@1.1.2
printj@1.1.2
ssf@0.10.3
wmf@1.0.2
xlsx@0.15.6

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
commander@2.14.1
commander@2.17.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

8
All Dependencies CSV
β“˜ This is a list of xlsx 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
adler-321.2.05.27 kBApache-2.0
prod
cfb1.2.2107.24 kBApache-2.0
prod
codepage1.14.01.9 MBApache-2.0
prod
commander2.17.117.84 kBMIT
prod
crc-321.2.29.87 kBApache-2.0
prod
exit-on-epipe1.0.12.34 kBApache-2.0
prod
ssf0.10.323.79 kBApache-2.0
prod
wmf1.0.269.72 kBApache-2.0
prod

Visualizations

Frequently Asked Questions

What does xlsx do?

SheetJS, also known as 'xlsx', is a comprehensive, community-maintained JavaScript library that allows you to work with various spreadsheet formats. It's particularly useful for parsing spreadsheets and extracting meaningful data from them, as well as generating new spreadsheet files. This library offers a solution for processing a myriad of spreadsheet data formats, enabling simple data extraction from almost any complex spreadsheet and generating new spreadsheets that are compatible with both legacy and modern software.

How do you use xlsx?

To make use of the xlsx package, you need to install it first using npm (npm install xlsx). Then you can import and use it in your JavaScript file. There are different methods to extract and process data depending on where the spreadsheet data is coming from. Here are two simple examples of how to use the library:

  1. Reading a local file in a NodeJS server:
var XLSX = require("xlsx");

var workbook = XLSX.readFile("test.xlsx");
  1. Fetching a file in the web browser ("Ajax"):
var url = "http://oss.sheetjs.com/test_files/formula_stress_test.xlsx";

/* set up async GET request */
var req = new XMLHttpRequest();
req.open("GET", url, true);
req.responseType = "arraybuffer";

req.onload = function(e) {
  var workbook = XLSX.read(req.response);

  /* DO SOMETHING WITH workbook HERE */
};

req.send();

Where are the xlsx docs?

The xlsx package documentation is not explicitly mentioned in the README content. However, based on the context and the information provided, one can assume that the main source of documentation would be the README itself along with the various files and examples in the GitHub repository for the package