1.0.2 • Published 8 years ago

koa-simple-json2csv v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

koa-simple-json2csv

A simple json to csv module to support koa.

Usage

var json2csv = require('koa-simple-json2csv');

var authors = [{
  name: 'solee',
  homepage: 'http://solee.me',
  repo: {
    url: 'https://github.com/solee0524/koa-simple-json2csv.git',
    type: 'git'
  },
  keys: ['coo"l', 'lol']
}, {
  name: 'solee_clone',
  homepage: 'http://solee.me',
  repo: {
    url: 'https://github.com/solee0524/koa-simple-json2csv.git',
    type: 'git'
  },
  keys: ['clone', 'myth']
}];

var options = {
  data: authors,
  fields: ['name', 'homepage', 'repo.url', 'keys']
}

var csv = yield json2csv(options);

data and fields in options must be Array

License

MIT © Bo Li (solee.me)