moment-twitter

0.2.0 • Public • Published

Twitter-like Date Formatter Build Status

moment.twitter.js is an extension to moment.js that formats dates like Twitter.

Works on both past and future dates.

Methods

moment().twitterLong()

Web-friendly formatting.

Examples:

Formats time relative to current time.

moment(moment() + (36e5 * 5)).twitter()
// 5 hours

Yes, it does smart pluralization.

moment(moment() + 36e5).twitter()
// 1 hour

Times greater than 24 hours are converted to dates like Mar 7

moment(moment() + 6048e5).twitter()
// Mar 7

moment().twitter()

For use on mobile (alias moment().twitterShort()).

Examples:

Units single characters, and there are no spaces.

moment(moment() + (36e5 * 5)).twitterShort()
// 5h

Times greater than 24 hours but more than 6 days are converted to days.

moment(moment() + (864e5 * 6)).twitterShort()
// 6d

Times greater than 6 days are slash-separated.

moment(moment() + 6048e5).twitterShort()
// 3/7/86

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.0
    72
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.2.0
    72

Package Sidebar

Install

npm i moment-twitter

Weekly Downloads

72

Version

0.2.0

License

BSD-2-Clause

Last publish

Collaborators

  • dantman