Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 373 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 373 Bytes

csv2jsonstream

the cheapest csv to json-array converter EVER!

  • uses papaparse
  • assumes csv header rows
  • outputs rows in a streaming manner

installation

npm i -g @erdii/csv2jsonstream

usage

  • Read csv from file: csv2jsonstream input.csv > output.json
  • Read csv from stdin: cat input.csv | csv2jsonstream > output.json