0.5.0 • Published 9 years ago

convert-json v0.5.0

Weekly downloads
15
License
MIT
Repository
github
Last release
9 years ago

Convert JSON

Build Status

A collection of converting multiple formats of files to JSON.

Support

  • csv, tsv, dsv.. (using stream)
  • xlsx (using readFile)
  • xls (using readFile)
  • xml (using readFile)

Install

npm install convert-json

Usage

CSV

var cv2json = require('../');

var csv_trans = cv2json.csv('./test/test.csv', options /* optional */, function(err, result) {
  if(err)
    console.error(err);
  else 
    console.log(result);
    // result should be a json object or array.
})

The first argument is a csv input file, for options see details https://github.com/chilijung/CSVstream#options-csvstreamoptions, and the last argument is a callback function.

XLS

var cv2json = require('../');

var csv_trans = cv2json.xls('./test/test.xls', options /* optional */, function(err, result) {
  if(err)
    console.error(err);
  else 
    console.log(result);
    // result should be a json object or array.
})

The first argument is a xls input file, for options see details https://github.com/SheetJS/js-xls#parsing-options, and the last argument is a callback function.

XLSX

var cv2json = require('../');

var csv_trans = cv2json.xlsx('./test/test.xlsx', options /* optional */, function(err, result) {
  if(err)
    console.error(err);
  else 
    console.log(result);
    // result should be a json object or array.
})

The first argument is a xlsx input file, for options see details https://github.com/SheetJS/js-xlsx#parsing-options, and the last argument is a callback function.

XML

var cv2json = require('../');

var csv_trans = cv2json.xml('./test/test.xml', options /* optional */, function(err, result) {
  if(err)
    console.error(err);
  else 
    console.log(result);
    // result should be a json object or array.
})

The first argument is a xml input file, for options see details https://github.com/Leonidas-from-XIV/node-xml2js#options, and the last argument is a callback function.

Library using

  • csv

https://github.com/chilijung/csvstream

  • xlsx

https://github.com/SheetJS/js-xlsx

  • xls

https://github.com/SheetJS/js-xls

  • xml

https://github.com/Leonidas-from-XIV/node-xml2js

License

MIT

0.5.0

9 years ago

0.4.0

10 years ago

0.3.3

10 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago