Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Simple CSV export module that can export a rich JSON array of objects to CSV.
var csv = require('json-csv')
csv.toCSV(args, callback)
var callback = function(err,csv) {
//csv contains string of converted data in CSV format.
}
Arguments:
{
//required: array of data
data : [],
//field definitions for CSV export
fields :
[
{
//required: field name for source value
name : 'string',
//required: column label for CSV header
label : 'string',
//optional: filter to tranfsorm value before exporting
filter : function(value) { return value; }
}
]
}
Simple structure with basic CSV conversion.
var csv = require('../json-csv')
var items = [
{
name : 'fred',
email : 'fred@somewhere',
amount : 1.02
},
{
name : 'jo',
email : 'jo@somewhere',
amount : 1.02
},
{
name : 'jo with a comma,',
email : 'jo@somewhere',
amount : 1.02
},
{
name : 'jo with a quote"',
email : 'jo@somewhere',
amount : 1.02
}]
csv.toCSV({
data : items,
fields : [
{
name : 'name',
label : 'Name',
quoted : true
},
{
name : 'email',
label : 'Email'
},
{
name : 'amount',
label : 'Amount'
}
]},
function(err,csv) {
console.log(csv);
});
Generates Output:
Name,Email,Amount
"fred",fred@somewhere,1.02
"jo",jo@somewhere,1.02
"jo with a comma,",jo@somewhere,1.02
"jo with a quote""",jo@somewhere,1.02
Here's a little more advanced sample that uses sub-structures and a filter for manipulating output for individual columns.
var csv = require('json-csv')
var items = [
{
contact : {
company : 'Widgets, LLC',
name : 'John Doe',
email : 'john@widgets.somewhere'
},
registration : {
year : 2013,
level : 3
}
},
{
contact : {
company : 'Sprockets, LLC',
name : 'Jane Doe',
email : 'jane@sprockets.somewhere'
},
registration : {
year : 2013,
level : 2
}
}
];
csv.toCSV({
data : items,
fields : [
{
name : 'contact.company',
label : 'Company'
},
{
name : 'contact.name',
label : 'Name'
},
{
name : 'contact.email',
label : 'Email'
},
{
name : 'registration.year',
label : 'Year'
},
{
name : 'registration.level',
label : 'Level',
filter : function(value) {
switch(value) {
case 1 : return 'Test 1'
case 2 : return 'Test 2'
default : return 'Unknown'
}
}
}]
},
function(err,csv) {
console.log(csv);
});
Generates Output:
Company,Name,Email,Year,Level
"Widgets, LLC",John Doe,john@widgets.somewhere,2013,Unknown
"Sprockets, LLC",Jane Doe,jane@sprockets.somewhere,2013,Test 2
FAQs
Easily convert JSON array to CSV in Node.JS via buffered or streaming.
The npm package json-csv receives a total of 2,310 weekly downloads. As such, json-csv popularity was classified as popular.
We found that json-csv demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.