본문 바로가기

컴퓨터/NodeJS

json2xlsx 사용법 (데이터베이스 조회 결과를 엑셀 파일로 다운로드)

▩ 참고

https://github.com/digplan/json2xlsx

 

GitHub - digplan/json2xlsx: Pipe JSON to Excel spreadsheet

Pipe JSON to Excel spreadsheet. Contribute to digplan/json2xlsx development by creating an account on GitHub.

github.com

▩ 패키지 설치

~/app$ npm install json2xlsx --save

▩ 객체

DB의 select 결과인 result 를 사용한다.

▩ 모듈 추출

const json2xlsx = require("json2xlsx");

▩ 엑셀파일 쓰기

json2xlsx.write(파일명, 시트명, result);

 

'컴퓨터 > NodeJS' 카테고리의 다른 글

npm xml-js  (0) 2022.05.02
GITHUB  (0) 2022.04.01
019. EJS  (0) 2022.01.21
023. SSL 인증받기  (0) 2021.12.01
NodeJS EJS  (0) 2021.11.06