I have a csv file and I want to open it (in excel) with plain javascript.
I've searched a lot of websites and none of them seem to have the answer.
ANSWER
const { exec } = require('child_process');
exec('start ./csv/Fixture.csv', (err, stdout, stderr) => {});