1.2.0 • Published 4 months ago

parse-csvtojson v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

parse-csvtojson

Package Version [Build Status] PackagePhobia Latest Commit

Stream and CLI to convert CSV to JSON.

Install

Installation of the npm package:

Install globally if you want to use the CLI:

npm install --global parse-csvtojson

Install locally if you want to use it as a library:

npm install --save parse-csvtojson

Usage JSON Object

var csv2json = require("parse-csvtojson");
var fs = require("fs");
csv2json("example.csv", options, function (err, jsonData) {
    if (err) {
        console.error("Error:", err);
    } else {
        result = jsonData;
        console.log(JSON.stringify(jsonData, null, 2));
    }
});

Contributions

Contributions are very welcomed, either on the documentation or on the code.

You may:

  • report any issue you've encountered;
  • fork and create a pull request.

License