1.0.1 • Published 7 years ago

csv-excel-to-json v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
7 years ago

csv-excel-to-json

Introduction

Module to convert CSV or Excel file to JSON output

Code Samples

syntax

convertToJson(input, output, optionalConfig);

usage

var csvOrExcel = require('csv-excel-to-json'); 

csvOrExcel.convertToJson("D:\\ng\\sample.csv", "D:\\ng\\sample.json");  
csvOrExcel.convertToJson("D:\\ng\\sample.xls", "D:\\ng\\sample-xls.json", {ignoreEmpty: false});  

default configuration

{
        delimiter: ',',   // for CSV
        ignoreEmpty: true,
        sheetNumber: 0 // In case of Excel file
}

Installation

npm install csv-excel-to-json --save

1.0.1

7 years ago

1.0.0

7 years ago