0.2.1 • Published 11 years ago

node-csv-json v0.2.1

Weekly downloads
14
License
MIT
Repository
github
Last release
11 years ago

node-csv-json

Build Status

Converting csv file to json files using nodejs

Install

  npm install node-csv-json

Usage

  node_cj = require("node-csv-json");
  node_cj({
    input: "sample.csv", 
    output: "output.json"
  }, function(err, result){
    if(err) {
      console.error(err);
    }else {
      console.log(result)
    }
  });

In config object, you have to enter an input path. But If you don't want to output any file you can set to null.

License

MIT @chilijung

0.2.1

11 years ago

0.2.0

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago