UNPKG

csv-tools

Version:

Convert CSV to JSON and JSON to CSV.

11 lines (7 loc) 215 B
const csv = require('..'); const file = "data.csv"; fs.readFile(file, "utf8", function (err, csv) { if (err) console.error(err); const json = csvToJson(csv); console.log(JSON.stringify(json, null, 2)); });