Excel
[Node.js] exceljs 를 통한 write, download
const Excel = require('exceljs'); const moment = require('moment'); const ExcelUtil = { //headers 컬럼명 //keys 타입 (kay-value 형식의 key) excelDownload : function(menu, data, headers, keys, res){ //파일이름에들어갈 오늘날짜를 위해서 데이트선언 ( 중복 방지는 덤 ) const currentDate = new Date(); //오늘날짜를 YYYY-MM-DD 로 선언하여 파일이름에 붙이기 위해서. const currentDayFormat = currentDate.getFullYear()+"-"+ (currentDate.getMonth()+1)+"-"+ current..