async-json2csv
v1.0.4
Published
Use es7 async to convert json to csv form data
Downloads
593
Maintainers
Readme
async-json2csv
A simple json to csv module to support async.
Usage
var json2csv = require('async-json2csv');
var authors = [{
name: 'solee',
homepage: 'http://solee.me',
repo: {
url: 'https://github.com/solee0524/async-json2csv.git',
type: 'git'
},
keys: ['coo"l', 'lol']
}, {
name: 'solee_clone',
homepage: 'http://solee.me',
repo: {
url: 'https://github.com/solee0524/async-json2csv.git',
type: 'git'
},
keys: ['clone', 'myth']
}];
var options = {
data: authors,
fields: ['name', 'homepage', 'repo.url', 'keys'],
header: true
}
var csv = await json2csv(options);
data
and fields
in options
must be Array
Change
v1.0.2
Fix comma stuff.
v1.0.1
Add header
option to decide whether to add fields to header or not.
License
MIT © Bo Li (solee.me)