250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Express
- RDS
- atlas
- JavaScript
- Node.js
- AWS
- double quote
- async
- til
- jsonwebtoken
- TailwindCSS
- certbot
- sequelize
- clipBehavior
- css
- findByIdAndDelete
- TypeScript
- wil
- Nodejs
- nginx
- MYSQL
- mongodb
- single quote
- await
- moment
- Find
- flutter
- mongoose
- https
- EC2
Link
Archives
반응형
목록moment (1)
기억 휘발 방지소
[Node.js] moment.js로 날짜 표시하기
자바스크립트로 날짜를 다룰 때 자주 사용하는 라이브러리가 바로 moment.js라고 생각한다. 📌 설치 npm i moment 혹은 npm install --save moment 📌 날짜 다루기 const moment = require("moment"); moment(); // Moment moment().format(); // 2022-01-04T14:17:38+09:00 moment().format("YYYY/MM/DD hh:mm:ss a"); // 2022/01/04 02:22:01 pm format()으로 원하는 날짜 형식을 지정할 수 있다. 년 - YYYY: 2022 / YY: 22 월 - MMMM: January / MMM: Jan / MM: 01 / M: 1 일 - DD: 04 / D: 4 ..
Web/Node.js
2022. 1. 4. 15:43
반응형