[Node.js] Node Timezone
nodejs를 사용할 시 기본시간이 UTC(세계 표준 시)로 설정되어 있기 때문에 다른 방법을 통해서 우리나라 현재 시간을 가져와야 합니다. 많은 블로그에서 moment를 이용해서 timezone설정을 하는방법을 적어두셨는데 전 그방법이 적용이 안되서 주먹구구식으로 설정해서 작업했습니다. 방법 1. Moment 설치 npm i moment moment-timezone Moment.js 파일 생성 require('moment-timezone'); var moment = require('moment'); moment.tz.setDefault("Asia/Seoul"); exports.moment = moment; 위의 방법을 통해서 timezone설정을 할 수 있다고 하지만 setDefault된 timezon..