2.0.3 • Published 3 years ago

@daviskitavi98/csv2json v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@daviskitavi98/csv2json

A brilliant javascript package to parse csv to json

How to use the package

npm install --save @daviskitavi98/csv2json
const csv2json = require('@daviskitavi98/csv2json')
let response = csv2json('Path-to-your-csv')

The returned object has two main important data: 1. The CSV headers

let response = csv2json('Path-to-your-csv')
console.log(response.headers)
  1. The CSV Json data
let response = csv2json('Path-to-your-csv')
console.log(response.json)
2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.0

3 years ago