const filePath = path.resolve('data/products.csv');
const fileContent = fs.readFileSync(filePath, 'utf8');
const products = Papa.parse(fileContent, { header: true }).data;
...
const filePath = path.resolve('data/products.csv');
const fileContent = fs.readFileSync(filePath, 'utf8');
const products = Papa.parse(fileContent, { header: true }).data;
...