Чтобы расширить мой комментарий (из документа csvtojson)
Установить с npm i --save csvtojson
Затем вы используете модуль следующим образом:
/** csv file
a,b,c
1,2,3
4,5,6
*/
const csvFilePath='<path to csv file>' // Resource.csv in your case
const csv=require('csvtojson') //. Make sure you have this line in order to call functions from this modules
csv()
.fromFile(csvFilePath)
.then((jsonObj)=>{
console.log(jsonObj);
/**
* [
* {a:"1", b:"2", c:"3"},
* {a:"4", b:"5". c:"6"}
* ]
*/
})