Node exceljs reading file
问题 So according to the offical documentation i should be able to read an excel document using: // read from a file var workbook = new Excel.Workbook(); workbook.xlsx.readFile(filename) .then(function() { // use workbook }); // pipe from stream var workbook = new Excel.Workbook(); stream.pipe(workbook.xlsx.createInputStream()); I have the following document: What i need to do is basicly to load each row into an object: var excelObject = {competence1: '', competence2: ''} And then save it into an