Socket
Socket
Sign inDemoInstall

json-to-csv

Package Overview
Dependencies
15
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    json-to-csv

Writes an array of Javascript objects to a CSV file.


Version published
Weekly downloads
481
increased by7.61%
Maintainers
1
Install size
1.32 MB
Created
Weekly downloads
 

Readme

Source

#json-to-csv

Given an array of Javascript objects and a file name, this module writes the contents of the array to a csv file, wrapped in a promise.

To Install

npm install json-to-csv

To Use

var jsonToCSV = require('json-to-csv');

To write to file:

const o = [
	{a: 1, b: 2, c: 3},
	{a: 4, b: 5, c: 6}
];
const fileName = 'something.csv';

jsonToCSV(o, fileName)
.then(() => {
  // success
})
.catch(error => {
  // handle error
})

The something.csv file will appear as:

a,b,c
1,2,3
4,5,6

Keywords

FAQs

Last updated on 26 May 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc