npm install xls-to-json
node_xj = require("xls-to-json");
node_xj({
input: "sample.xls", // input xls
output: "output.json" // output json
sheet: "sheetname" // specific sheetname
}, function(err, result) {
if(err) {
console.error(err);
} else {
console.log(result);
}
}
);
网友评论