fuminchao / csv2json

Parse CSV into JSON Object

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

csv2json

Build Status

Parse CSV into JSON Object

Sample

Code

let json = await readCSVasJson(fs.createReadStream(file, {encoding: 'utf-8'}));

Supported CSV

# Comment supported
col1,col2,col3
text1,text2,text3
text1,text2,"text3 ,test3 """

Output JSON

[
  {col1: "text1", col2: "text2", col3: "text3"},
  {col1: "text1", col2: "text2", col3: "text3 ,test3 \""}
]

About

Parse CSV into JSON Object

License:MIT License


Languages

Language:JavaScript 100.0%