moment
Parse, validate, manipulate, and display dates in javascript. (by moment)
date-fns
⏳ Modern JavaScript date utility library ⌛️ (by date-fns)
moment | date-fns | |
---|---|---|
102 | 125 | |
48,067 | 35,538 | |
0.1% | 0.9% | |
6.0 | 9.3 | |
7 months ago | 6 months ago | |
JavaScript | TypeScript | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
moment
Posts with mentions or reviews of moment.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-06.
-
Cool NPM Packages for web Dev </>
Link :https://www.npmjs.com/package/moment
-
100+ Must-Have Web Development Resources
Moment.js: A JavaScript library for parsing, validating, manipulating, and displaying dates.
-
Top 20 Javascript Libraries on Github
Repository: Moment.js
-
You're parsing URLs wrong.
The fact that moment.js or day.js needs to exist in 2024 bothers me a lot.
-
JavaScript Compare Dates: From Chaos to Clarity
Moment.js lets you do amazing things with dates and times in JavaScript. You can easily compare, change, and format them in different ways. For example, you can say things like "today is Monday" or "3 hours ago" or "12/31/2020". To start with Moment.js, you need to install it and import it into your JavaScript project. For example:
-
How to Convert String to Date in JavaScript
To learn more about Moment.js, please visit their official website.
-
8 NPM Packages for JavaScript Beginners [2024][+tutorials]
Ah, Moment.js, the guardian angel of date and time manipulation. Ever needed to format a date, calculate durations, or display something like "2 days ago"? Moment.js has got your back. It's a lifesaver for anything date and time-related, making it a must-have in your project, especially if you're into making your users feel like you really get them.
-
Adding "Created At" and "Last Updated" Dates to Jekyll
After hours of trying to figure out why Jekyll was still showing "Today" for a post I modified last week, I remembered that I am using the timeago filter from jekyll-timeago plugin. I was rendering the dates using {{ doc.last_modified_at | timeago }}. As you know, Jekyll is a static site generator, and it renders this as HTML at the time of build, and only then. This means any date rendered with timeago is hardcoded as is in the HTML and won't change until the next build. I switched all the dates to the "%-d %b %y" format for now. Might use moment.js in the future to get the timeago dates back.
-
The 20 most used React libraries
moment: Handles date and time manipulations with ease. Learn more
-
👨🚀 Traversing Time with Intl.RelativeTimeFormat()
For the longest time working with dates in JavaScript was a huge pain. That’s why libraries such as moment.js or date-fns are so popular. A lot of times I’d reach for these libraries when working with relative time formatting, but since late last year we’ve had pretty great browser support for the RelativeTimeFormat() method. In my mind, relative dates are just more visually appealing, especially for working with dates internationally. Dates like "5 days ago" or "in 2 months" are far more intuitive for users than 12/12/2023, or 03/11/2027. Folks in the US will see that as March 11, 2027, whereas the rest of the world will see that as November 03, 2027. What a nightmare.
date-fns
Posts with mentions or reviews of date-fns.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-03-06.
-
Say Goodbye to JavaScript’s DST Date Confusion
These issues can also occur in date-time libraries such as moment.js, date-fns, Day.js, and luxon.
-
Day 8: D-8 🎱
Do you know how many days left till Christmas? Well this little handy library certainly does!
-
Release Radar · September 2024: Major updates from the open source community
JavaScript seems to be the flavour of the month, and here's another JavaScript project for you. date-fns provides the most comprehensive and consistent toolset for manipulating JavaScript dates in a browser & Node.js. The latest version comes ten years after the very first release. There are no breaking changes in the release, and it comes with added time zone support, meaning you can select which time zone to make calculations in. There are some changes to functional arguments and a few fixes. Read up on all the changes in the release notes.
- Date-fns: Modern JavaScript date utility library
-
Date Formatting: Carbon, date-fns, and Vanilla JS
Working with dates and times is an essential part of web development. Whether you're building a blog, an e-commerce site, or a personal project, handling and formatting dates correctly can greatly enhance user experience. In this blog, we'll explore date formatting using three different methods: Carbon (PHP), date-fns (JavaScript), and Vanilla JS Date. We'll provide examples for each to help you understand how to format dates in various contexts.
-
Publish pure ESM npm package written in TypeScript to JSR
I'm developing vremel, an utility library for Temporal API (similar to date-fns for Date). It's a pure ESM package1 and written in TypeScript.
-
How to parse and format a date in JavaScript
Date-fns (33.3k ⭐) — A library that offers great documentation, functional architecture, and utilities that handle almost any task you can think of. It has a modular design that allows you to import only the functions you need.
-
Handling dates in JavaScript with Tempo
date-fns is a JavaScript date-handling library written in TypeScript. It was first released in 2014. date-fns works in both the browser and Node.js. It also supports working with TypeScript and Flow (the JavaScript typechecker). date-fns is very popular, with 33.4K stars on GitHub and 20.5M npm weekly downloads, at the time of writing.
-
JavaScript Compare Dates: From Chaos to Clarity
Date-fns is a modern and modular library that lets you do amazing things with dates and times. You can parse, sort dates, and format them in any way you want. You can also use plugins to add more features, like natural language comparisons, relative time, or custom formats.
-
Javascript Date() - DateOnly Format and off by 1 day when using date-fns
// Prevent the date to lose the milliseconds when passed to new Date() in IE10 return new (argument.constructor as GenericDateConstructor)( +argument, ); // Source: https://github.com/date-fns/date-fns/blob/5c1adb5369805ff552737bf8017dbe07f559b0c6/src/toDate/index.ts#L46
What are some alternatives?
When comparing moment and date-fns you can also consider the following projects:
dayjs - ⏰ Day.js 2kB immutable date-time library alternative to Moment.js with the same modern API
Luxon - ⏱ A library for working with dates and times in JS
dateformat - A node.js package for Steven Levithan's excellent dateFormat() function.
moment-timezone - Timezone support for moment.js