Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simple-json2csv

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-json2csv

A simple json to csv converter nodejs module

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

simple-json2csv

A simple json to csv converter nodejs module

build status

Installation

This module is installed via npm:

$ npm install simple-json2csv

It exposes a SimpleJson2Csv class with a constructor that accepts a single parameter with following properties.

data: the array of objects to be converted [{}...]
fields: array of field objects or simple strings [{ name: 'blah', header: 'Blah Header' }...] 
        header property is optional in which case name property or string will be use for column name
transform: the function which will be called on each object function(obj) { return transformed; }

Example Usage

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

// create a new instance
var json2Csv = new SimpleJson2Csv({
  fields: [ 
    { name: "name", header: "Name" },
    { name: "email", header: "Email Address" }
  ],
  data: [
    { name: "John Blue", email: "john.blue@domain.com" },
    { name: "Lab Black", email: "lab.black@domain.com" }
  ]
});
json2Csv.pipe(fs.createWriteStream('/path/to/some/file'));

// hint: listen for 'close' on the writable file stream

Keywords

FAQs

Package last updated on 21 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc