A simple json to csv converter nodejs module
npm install simple-json2csvA simple json to csv converter nodejs module

This module is installed via npm:
`` bash`
$ npm install simple-json2csv
` js
var SimpleJson2Csv = require('simple-json2csv');
var json2Csv = new SimpleJson2Csv(require('./fixtures/simple.json'));
json2Csv.pipe(fs.createWriteStream(
// hint: listen for 'close' on the writable file stream
``