simple-json2csv
v0.0.5
Published
A simple json to csv converter nodejs module
Downloads
5
Readme
simple-json2csv
A simple json to csv converter nodejs module
Installation
This module is installed via npm:
$ npm install simple-json2csv
Example Usage
var SimpleJson2Csv = require('simple-json2csv');
var json2Csv = new SimpleJson2Csv(require('./fixtures/simple.json'));
json2Csv.pipe(fs.createWriteStream(<path>));
// hint: listen for 'close' on the writable file stream