node-xls-json-lc
Install
``` npm install xls-to-json-lc ```Usage
``` javascript nodexj = require("xls-to-json-lc"); nodexj({input: "sample.xls", // input xls
output: "output.json", // output json
sheet: "sheetname", // specific sheetname
lowerCaseHeaders:true
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
});
```
In config object, you have to enter an input path. But If you don't want to output any file you can set to null
.