
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
node-campaign
Advanced tools
This node module will convert an array of JSON documents to a CSV string.
Column headings will be automatically generated based on the keys of the JSON documents. Nested documents will have a '.' appended between the keys.
$ npm install json-2-csv
var json2csv = require('json-2-csv');
var json2csv = require('json-2-csv');
var documents = [
{
'Make': 'Nissan',
'Model': 'Murano',
'Year': '2013'
'Specifications': {
'Mileage': '7106',
'Trim': 'S AWD'
}
},
{
'Make': 'BMW',
'Model' 'X5',
'Year': '2014',
'Specifications': {
'Mileage': '3287',
'Trim': 'M'
}
}
];
var json2csvCallback = function (err, res) {
if (err) throw err;
console.log(res);
};
json2csv.json2csv(documents, json2csvCallback);
The above code prints out:
Make,Model,Year,Specifications.Mileage,Specifications.Trim
Nissan,Murano,2013,7106,S AWD
BMW,X5,2014,3287,M
TODO: Add tests
FAQs
A campaign manager for NodeJS.
We found that node-campaign 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.