nice-json2csv
A simple node.js tool that converts a Json object to a CSV output without requiring headers. It can extend the Response object on Express.js to easily produce csv files available to be downloaded.
Installation
npm install nice-json2csv
Usage
convert(jsonObject [, columns] [, suppressHeader])
Include the library and use the convert function to get a csv string from your json object.
var json2csv = ;var myData = "first_name": "John" "last_name": "Doe" "first_name": "Jane" "last_name": "Doe" "first_name": "Mick"; // all the json objectvar csvContent = json2csv; // just the 'first_name' columnvar justFirstNames = json2csv; // without the header rowvar noHeader = json2csv;
Usage with Express.js
Include the library and decorate the Express object with app.use() as shown in the example after the express() initialisation. After that, res.csv() will be available.
res.csv(jsonObject, fileName [, columns] [, suppressHeader])
Somewhere in your app.js, your middleware, or wherever you instantiate express.js
var express = ;var json2csv = ; var app = ; app; app; app;
License
MIT