상세 컨텐츠

본문 제목

Moment, 날짜 라이브러리

React/React 관련 라이브러리

by 비오스터딩 2021. 1. 13. 14:40

본문

손쉽게 날짜를 생성해주는 라이브러리

 

비슷한 역할을 하는 라이브러리들이랑 비교해보면 moment가 제일 많이 쓰인다.

day.js는 점유도는 낮지만 사이즈 면에서 매력적이다.

 

어쨌든 점유도가 제일 높은 Moment를 사용해보자.

 


사용방법

 

moment() : 현재 날짜

moment(post.createdAt) : 인자(게시글생성일)가 알아서 모멘트객체로 바뀜.

 

moment를 사용하지않으면

new Data.getFullYear() + new Data.getMonth() + ...

이렇게 조합해야하지만,

 

format이나 fromNow 메서드 등을 통해 쉽게 표현할 수 있다. 

 

Moment.js | Docs

moment.relativeTimeThreshold(unit); // getter moment.relativeTimeThreshold(unit, limit); // setter duration.humanize has thresholds which define when a unit is considered a minute, an hour and so on. For example, by default more than 45 seconds is consider

momentjs.com

 

 

fromNow를 사용하면 이런식으로

하루전, 2일 전 이렇게 뜬다.

 

반응형

관련글 더보기

댓글 영역