Socket
Socket
Sign inDemoInstall

csv-to-json

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    csv-to-json

parses csv and returns it into json object


Version published
Weekly downloads
235
increased by1.29%
Maintainers
1
Install size
6.11 kB
Created
Weekly downloads
 

Readme

Source

##csv-to-json NPM Version Downloads Dependencies Build Status Coverage Status

Converts your csv into json structure

Usage

Parse a csv file like this:

var csv = require("./csv.js");
var json = csv.parse('path/to/file'); // Console reads “Parsed Items: #”

Writes the parsed file to a file like this:

csv.write('path/to/file'); // Console reads “Parsed Items: #”

By default, a report is sent to the console (“Parsed Items: #” for .parse(); “File saved” for .write()). You can pass an config object as a second argument with console: false to bypass this behavior. Like so:

var config = {
    console: false
}
var json = csv.parse('path/to/file', config);
csv.write('path/to/file', config);

Keywords

FAQs

Last updated on 07 Mar 2015

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