How to create an Excel File with Nodejs?
excel4node is a maintained, native Excel file creator built from the official specification. It’s similar to, but more maintained than msexcel-builder mentioned in the other answer. // Require library var excel = require(‘excel4node’); // Create a new instance of a Workbook class var workbook = new excel.Workbook(); // Add Worksheets to the workbook var worksheet … Read more