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

csv-to-json

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-to-json

parses csv and returns it into json object

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

csv-to-json

Converts your csv into json structure

Dependencies

fs

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

Package last updated on 23 Dec 2014

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