0.2.2 • Published 8 years ago

nice-json2csv v0.2.2

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

nice-json2csv Build Status

NPM

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)

Include the library and use the convert function to get a csv string from your json object.

var json2csv = require('nice-json2csv');
var myData = [{ "first_name": "John", "last_name": "Doe"}, { "first_name": "Jane", "last_name": "Doe"}, { "first_name": "Mick"}];

// all the json object
var csvContent = json2csv.convert(myData);

// just the 'first_name' column
var justFirstNames = json2csv.convert(myData, ["first_name"]);

// without the header row
var noHeader = json2csv.convert(myData, ["first_name"], true);

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)

Somewhere in your app.js, your middleware, or wherever you instantiate express.js

var express = require('express');
var json2csv = require('nice-json2csv');

var app = express();

app.use(json2csv.expressDecorator);  

app.get('/getCsv', function(req, res){
	res.csv([{ "hello": "world" }], "myFile.csv");
});

app.listen(3000);

License

MIT

Bitdeli Badge

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

9 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.0

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

11 years ago

0.0.9

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago