I am trying to read an excel file from node js, But I am getting succeed, Now am working with below set of code
var xlsx = require('node-xlsx');
var obj = xlsx.parse(__dirname + '/productExcell.xlsx'); // parses a file
console.log(obj);
The console doesn't print anything for me and also no console executes after parsing statement.