async-json2csv

1.0.4 • Public • Published

async-json2csv

A simple json to csv module to support async.

NPM Version Downloads Dependency Status License

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)

Package Sidebar

Install

npm i async-json2csv

Weekly Downloads

84

Version

1.0.4

License

MIT

Unpacked Size

3.79 kB

Total Files

3

Last publish

Collaborators

  • solee