I want to make a bulk insert from a csv with columns names different to the ones in my database. I am developing a React web and would like to convert it to json with the correct columns names.
Here is an example
Csv:
Prod,price,stock
Shirt,200,12
Json:
{User_prod:'Shirt',User_price:'200',user_stock:'12'}
Thanks!