
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
json-to-csv
Advanced tools
#json-to-csv
Given an array of Javascript objects and a file name, this module writes the contents of the array to a csv file, wrapped in a promise.
To Install
npm install json-to-csv
To Use
var jsonToCSV = require('json-to-csv');
To write to file:
const o = [
{a: 1, b: 2, c: 3},
{a: 4, b: 5, c: 6}
];
const fileName = 'something.csv';
jsonToCSV(o, fileName)
.then(() => {
// success
})
.catch(error => {
// handle error
})
The something.csv
file will appear as:
a,b,c
1,2,3
4,5,6
FAQs
Writes an array of Javascript objects to a CSV file.
The npm package json-to-csv receives a total of 287 weekly downloads. As such, json-to-csv popularity was classified as not popular.
We found that json-to-csv 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.