Skip to content

CarGDev/converter-csv-to-json

Repository files navigation

wakatime

converter-csv-to-json

convert csv file to json from a file in your system using nodejs


how to use

Install the package in the node project

npm i async-convert-csv-to-json
touch index.js

Add the next code in a nodejs file where the csv file is located

const path = require('path')
const converter = require('async-convert-csv-to-json')
const PATH =  path.join(__dirname,)

const filePath = `${PATH}/name_of_your_file.csv`;

async function convert () {
  const jsonConverted = await converter(filePath)
  console.log(jsonConverted)
}

convert()

About

convert csv file to json

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published