목차 exceljs 다운로드 npm install exceljs import ExcelJS from 'exceljs'; 셀 병합 // 셀 병합 ws.mergeCells('A1:D2'); 폰트 스타일 // 폰트 사이즈, 굵기, 색상 변경 ws.getCell('A1').font = { size: 18, bold: true, color: { argb: '000000' } }; 정렬 horizontal - left / center / right / fill / justify / centerContinuous / distributed vertical - top / middle / bottom / distributed / justify // 정렬 ws.getCell('A1').alignment = { horizon..