here I’m converting json to csv now i want to convert this csv file to xlsx data and upload it to AWS and get the link
Convert CSV to XLSX
const xlsxFilePath = 'path/to/transaction_data.xlsx';
await csvtoxlsx.writeToFile(xlsxFilePath, csvData);
Read the XLSX file
const fileContent = fs.readFileSync(xlsxFilePath);
I’m getting an error in writeToFile and cannot install the npm package csvtoxlsx.
2
Answers
Try with those new packages.
npm install csvtojson xlsx