Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
gulp-spreadsheet2json
Advanced tools
Export Excel (XLSX/XLS/ODS) with headers to json (only first spreadsheet in file).
I found a small bug with OpenOffice
ODT
files. If table has many columns,XLSX.js
doesn't read all columns, but same table inXLS
format work stabil!
First, install gulp-spreadsheet2json
as a development dependency:
npm install --save-dev gulp-spreadsheet2json
Then, add it to your gulpfile.js
:
(function() {
'use strict';
var gulp = require('gulp'),
rename = require("gulp-rename"),
xls2json = require('gulp-spreadsheet2json');
var spreadsheets = [
'config/**.xlsx',
'config/**.xls',
'config/**.ods'
];
gulp.task('parse:spreadsheet', function() {
gulp.src(spreadsheets)
.pipe(xls2json({
headRow: 1,
valueRowStart: 2,
trace: false
}))
.pipe(rename(function(path) {
path.extname = ".json";
}))
.pipe(gulp.dest('build'));
});
gulp.task('default', ['parse:spreadsheet']);
}());
Input
color_name | R | G | B |
---|---|---|---|
illuminant | 255 | 255 | 255 |
dark skin | 107 | 83 | 70 |
light skin | 182 | 147 | 128 |
Output
[
{
"color_name": "illuminant",
"R": 255.00000000002,
"G": 254.999999999984,
"B": 254.999999999997
},
{
"color_name": "dark skin",
"R": 106.732127788008,
"G": 82.6909148074604,
"B": 70.141586954399
},
{
"color_name": "light skin",
"R": 182.148358411673,
"G": 147.240481111174,
"B": 128.262943740921
}
]
Name | Type | Default | Description |
---|---|---|---|
headRow | number | 1 | The row number of head. (Start from 1) |
valueRowStart | number | 2 | The start row number of values. (Start from 1) |
startColumn | string | A | The start column Char of values. (Start from A) |
trace | Boolean | false | Whether to log each file path while convert success. |
MIT
FAQs
Excel spreadsheet (XLSX/XLS/ODS) to json
The npm package gulp-spreadsheet2json receives a total of 1 weekly downloads. As such, gulp-spreadsheet2json popularity was classified as not popular.
We found that gulp-spreadsheet2json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.