New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@libs-jd/xlsx-parse-table

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@libs-jd/xlsx-parse-table - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

8

package.json
{
"name": "@libs-jd/xlsx-parse-table",
"description": "Modern Excel/XLSX parser and streaming capabilities",
"version": "1.0.4",
"version": "1.0.5",
"homepage": "https://github.com/jeet-dhandha/xlsx-parse-table",

@@ -10,3 +10,3 @@ "author": "Jeet Dhandha",

"files": [
"index.js"
"dist"
],

@@ -23,6 +23,4 @@ "engines": {

},
"dependencies": {
"xlsx": "^0.18.5"
},
"devDependencies": {
"xlsx": "^0.18.5",
"@babel/core": "^7.26.0",

@@ -29,0 +27,0 @@ "@babel/preset-env": "^7.26.0",

@@ -1,2 +0,2 @@

# xlsx-parse-table
# @libs-jd/xlsx-parse-table

@@ -10,3 +10,3 @@ > A library to parse tables from Excel worksheets.

```sh
$ npm install --save @libs-jb/xlsx-parse-table
$ npm install --save @libs-jb/xlsx-parse-table xlsx
```

@@ -18,7 +18,11 @@

# Example - Node.js
```js
const xlsx = require("xlsx");
const workbook = xlsx.readFile("path/to/excel-file.xlsx");
const worksheet = workbook.Sheets[workbook.SheetNames[0]];
const { parse } = require("@libs-jb/xlsx-parse-table");
const tables = parse(worksheet);
const tables = parse("path/to/your/excel-file.xlsx");
console.log(tables);

@@ -25,0 +29,0 @@ ```

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc