Javascript Dates Manipulation with Date-fns

Oct 1, 2020

Topics:

At times during the development process, we constantly run into date objects 🕣. We need tools to assist us in handling those instances. There are two big players (Moment.js and date-fns) when it comes to JavaScript date management. This article will cover the basic applications of date-fns.

What is Date-fns?

Date-fns is a lightweight 🚀 library that provides comprehensive functions for date formatting and manipulation. It is a simple to use API with many small functions to work with. Date-fns is termed to be Lodash for dates with over 140 functions.

Why Date-fns ⚡

  • Immutable and pure – date-fns has pure built-in functions that return a new date instance rather than modifying the parsed date. This helps reduce and prevent bugs.
  • Native Date – date-fns uses existing native JavaScript date API.
  • Modular – you pick what you need, date-fns only imports the functions you need rather than the whole API functions pack. It works well with module bundlers such as webpackRollup, and Browserify. It also supports the tree-shaking algorithm.
  • Fast – date-fns is a small API that is very light, thus guaranteeing users the best experience.
  • Documentation – date-fns has well-outlined documentation with very clear and simple instructions to follow along. It also has use-case examples (code snippets) for every date function.
  • I18n – perhaps you want to display dates with your users’ favorite locale. Date-fns has a dozen locales to work with whenever you need them.
  • Typescript and Flow – supports both typescript and flow.

For more benefits on date-fns check this article out.

Getting Started with Date-fns

Date-fns is available in the npm packages collection. If you have Node.js installed, you can install date-fns using the command npm install date-fns.

If you are using yarn yarn add date-fns will get you started. Date-fns can be used with both CommonJS Modules and ES modules.

In this article, we will dive into the CommonJS module with date instances such as:

  • Displaying dates
  • Date formatting
  • Date locale
  • Time zones
  • Date arithmetic
  • Date comparisons, and other important applications of date-fns functions

Date Format

Date formatting is key when displaying a date. Formatting helps display human-readable dates. Date format replaces the individual date tokens to a format string. Formats specify the part of the date token you want to format and how the token will be displayed. To understand this better let’s have a look at some date token representation patterns that you can choose to display as formats.

Note: Some of these Unicode patterns are different from other date libraries such as Moment.js.

Calendar Year

  • y – 0, 1, 2, 3, 4, …, 17, 18, 1900, 2000, 2001, 2022, 2023, …
  • yo – 0th, 1st, 2nd, 3rd, 4th, …, 15th, 16th, 17th, 19th, 20th, …
  • yy – 00, 01, 02, 14, …, 15, 16, 17, 19 and 20, 21, 22, …
  • yyy – 000, 001, 002, …, 014, …, 2017, 2018, 2019, 2020, 2021, 2022, 2023, …
  • yyyy – 0000, 0001, 0002, …, 0014, …, 2017, 2018, 2019, 2020, 2021, 2022, 2023, …

Month

  • M – 1, 2, 3, 4, …, 10, 11 and 12
  • Mo – 1st, 2nd, 3rd, …, 4th, 10th, 11th, 13th and 12th
  • MM – 01, 02, 03, 04 …10, 11 and 12
  • MMM – Jan, Feb, Mar, Apr, …, Oct, Nov and Dec
  • MMMM – January, February, March, April, …, October, November and December
  • MMMMM – J, F, M, A, M, J, J, A, S, O, N and D

Day of month

  • d – 1, 2, 3, 4, …, 28, 29, 30 and 31
  • do – 1st, 2nd, 3rd, 4th, …, 29th, 30th and 31st
  • dd – 01, 02, 03, 04, …, 28, 29, 30 and 31

Day of year

  • D – 1, 2, 3, 4, …, 362, 363, 364 and 365
  • Do – 1st, 2nd, 3rd, 4th, …, 362nd, 363rd, 364th and 365th
  • DD – 01, 02, 03, 04, …, 362, 363, 364 and 365
  • DDD – 001, 002, 003, 004, …, 362, 363, 364 and 365

Day of week

  • E..EEE– Sun, Mon, Tue, Wed, Thu, Fri and Sat
  • EEEE – Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday
  • EEEEE – S, M, T, W, T, F, and S
  • EEEEEE – Su, Mo, Tu, We, Th, Fr and Sa

Hour (0-23)

  • H – 0, 1, 2, 3, 4, …, 19, 20, 21, 22 and 23
  • Ho – 0th, 1st, 2nd, 3rd, 4th, …, 19th, 20th, 21th, 22nd and 23rd
  • HH – 00, 01, 02, 03, 04, …, 19, 20, 21, 22 and 23

Hour (1-12)

  • h – 1, 2, 3, 4, …, 11 and 12
  • ho – 1st, 2nd, 3rd, 4th, …, 11th and 12th
  • hh – 01, 02, 03, 04, …, 11 and 12

Minute

  • m – 0, 1, 2, 4, …, 54, 55, 55, 57, 58 and 59
  • mo –0th 1st, 2nd, 3rd, 4th, …, 12th, 58th,59th
  • mm – 00, 01, 02, 04, …, 54, 55, 56, 57, 58 and 59

Second

  • s – 0, 1, 2, 3, 4, …, 54, 55, 56, 57, 58 and 59
  • so –0th 1st, 2nd, 3rd, 4th, …, 12th, 58th, 59th
  • ss – 00, 01, 02, 03, 04, …, 54, 55, 55, 56, 57, 58 and 5

Check more Unicode date format for Date-fns

Parsing and Displaying Date

As we have explained, date-fns is a collection of many small functions. Use require('date-fn'); to get started. To start parsing and displaying dates you need to import the functions you require, thus you don’t have to import the whole API (only what you need). Let’s display simply today’s date.

//import the function you want to use
const {format} = require('date-fns');
const {format} = require('date-fns');
//today's date
const today =format(new Date(),'dd.MM.yyyy');
console.log(today);

This will display the default current date with the date-fns default format. format displays the date token to a more human-readable and looks exactly the way you want it (return the date parsed from string using the given format string).

Displaying Formatted Date

const {format} = require('date-fns');
const date = new Date();
console.log(date);
console.log(`${format(date, 'dd.MM.yyyy')}`);
console.log(`${format(date, 'yyyy-MM-dd').toString()}`);
console.log(`today is ${format(date, 'EEEE, MMMM yyyy')}`);
console.log(`today is  ${format(date, 'EEEE,MMMM do, yyyy hh:mm a')}`);
console.log(`Today's date: ${format(date, 'MMMM, yyyy')}`);
console.log(`Today's date: ${format(date, 'MMMM.do.')}`);
console.log(`Today's date: ${format(date, 'EEEE do HH:mm ')}`);
console.log(`${format(date, 'EEEE,MMMM do, yyyy ppppp')}`);
console.log(`${format(date, 'do  MMMM yyyy OOOO')}`);

Alternatively, you can parse a default date value such as:

const {format} = require('date-fns');
//parse a default date value
const date = new Date('2020/09/19');
console.log(date);
console.log(`${format(date, 'dd.MM.yyyy')}`);
console.log(`${format(date, 'yyyy-MM-dd').toString()}`);
console.log(`${format(date, 'EEEE, MMMM yyyy')}`);
console.log(`${format(date, 'EEEE,MMMM do, yyyy hh:mm a')}`);
console.log(`${format(date, 'MMMM, yyyy')}`);
console.log(`${format(date, 'MMMM.do.')}`);
console.log(`${format(date, 'EEEE do HH:mm ')}`);
console.log(`${format(date, 'EEEE,MMMM do, yyyy ppppp')}`);
console.log(`${format(date, 'do  MMMM yyyy OOOO')}`);

The examples above will display the date parsed with several date formats. Check out more date formats you can play with and get more ideas of how date-fns formats works.

Note: we have only imported the format function as it is what we need, that’s one of the dynamic features of date-fns. When formatting date-fns token values try to avoid some common mistakes such as:

format(date, 'DD.MM.YYYY'); ❌
format(date, 'dd.MM.yyyy'); ✔

These mistakes commonly occur if the Unicode patterns do not match to the correct date-fns Unicode tokens.

Date Arithmetic (additions, subtractions)

It is hard to do arithmetic calculations for dates. Date-fns simplifies addition and subtraction of dates between years, months, days, weeks, and seconds using simple functions such as addDaysaddWeeksaddMonthssubDayssubWeskssubMonths etc.

Additions

Syntax: addDays(date, amount)

  • date – The date to be changed
  • amount – Amount of days to be added

Let’s perform simple date addition. To get started, import the add functions, then add the unit of time to the base date. Specify the operation you want to perform as the first argument followed by the number of units to add. Include the format function to format the date returned.

Example:

//import the reqqiureds  funtions
const {addMinutes,addHours,addDays,addMonths,addYears,format} = require('date-fns');
const date = new Date('2020.09.29 10:12:00');
//add days
const sum1 = addDays(date, 4);
//add months
const sum2 = addMonths(date, 3);
//add years
const sum3 = addYears(date, 3);
//add minutes
const sum4 = addMinutes(date, 40);
console.log(format(sum1, 'dd MMMM yyyy HH:mm'));
console.log(format(sum2, 'dd MMMM yyyy HH:mm'));
console.log(format(sum3, 'dd MMMM yyyy HH:mm'));
console.log(format(sum4, 'dd MMMM yyyy HH:mm'));

Note: Date units added/subtracted with positive decimals will be rounded off with math.floor and decimals less than zero will be rounded using math.cell.

Subtractions

Works exactly like addition, only that the add prefix function is replaced with a sub. Then subtract your specified units of time.

Syntax: subDays(date, amount)

Import sub function as shown in the example below. Similarly, you can choose format function to manipulate your display options.

const date = new Date('2020.09.29 10:12:00');
//sub days
const a = subDays(date, 4);
//sub minutes
const b = subMinutes(date, 40);
//sub months
const c = subMonths(date, 3);
//sub years
const d = subYears(date, 2);
console.log(format(a, 'dd MMMM yyyy HH:mm'));
console.log(format(b, 'dd MMMM yyyy HH:mm'));
console.log(format(c, 'dd MMMM yyyy HH:mm'));
console.log(format(d, 'dd MMMM yyyy HH:mm'));

Date Locale

Users who visits your website may come from different parts of the world. Assuming they do not speak your native language, how will you implement specifics or multiple locales to engage with those users?

Formatting dates was easy. How about locale? It cannot be that hard with date-fns, and it actually is as easy as pie. All you need is to import the locale plugin from date-fns.

Date-fns supports I18n to internationalize date functions and display localized formatted dates.

You need to use the require('date-fns/locale'); and pass the optional locales as the argument.

I.e. require('date-fns/locale/fr'); )(’fr for French’). For example, let’s have a simple date parsed and returned in French Locale.

const date = new Date('2019/01/01');
const frenchLocale = require('date-fns/locale/fr');
const format = require('date-fns/format');
const formattedDate = format(date, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: frenchLocale
});
console.log(formattedDate);

Multiple locales example:

const newYears = new Date();
const format = require('date-fns/format');
const frenchLocale = require('date-fns/locale/fr');
const russionaLocale = require('date-fns/locale/ca');
const spanishLocale = require('date-fns/locale/es');
const USLocale = require('date-fns/locale/en-US');
const eo = require('date-fns/locale/eo');
console.log( format(newYears, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: frenchLocale}));
console.log( format(newYears, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: eo}));
console.log( format(newYears, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: russionaLocale}));
console.log( format(newYears, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: spanishLocale}));
console.log( format(newYears, 'EEEE,MMMM do, yyyy hh:mm a', {
    locale: USLocale}));

Check official doc to have a look at supported locale/supported-languages

Date Time Zones

Date-fns supports time zone data to work with UTC or ISO date strings. This will help you display the date and time in the local time of your users.

The difficulty comes when working with another time zone’s local time, for example showing the local time of an event in LA at 8 pm PST on a Node.js server in Europe or a user’s machine set to EST.

In this case, there are two relevant pieces of information:

  • A fixed moment in time in the form of a timestamp, UTC or ISO date string, and
  • The time zone descriptor, usually an offset or IANA time zone name (e.g. America/Los_Angeles)

Time Zone Helpers

To understand time zone helpers, assume you have a system where you set an event to start at a specific time and your system local time should be shown when the site is accessed anywhere in the world.

  • zonedTimeToUtc returns a given date equivalent to the time zone UTC (parses date in a given time zone)
  • utcToZonedTime return local time from a UTC (converts date to the provided time zone)

Example Use Cases

Below are some use cases for us to look at.

npm install date-fns-tz

zonedTimeToUtc

const {format,zonedTimeToUtc,} = require("date-fns-tz");
const today = new Date(); // Wed Sep 16 2020 13:25:16
const timeZone = 'Europe/Paris'; // Let's see what time it is Down Under
const timeInBrisbane = zonedTimeToUtc(today, timeZone);
console.log(`
Default time zone: ${format(today, 'yyyy-MM-dd HH:mm:ss')}
Time in Paris: ${format(timeInBrisbane, 'yyyy-MM-dd HH:mm:ss')
}`);

utcToZonedTime

const {format,utcToZonedTime,} = require("date-fns-tz");
const today = new Date(); // Wed Sep 16 2020 13:25:16
const timeZone = 'Europe/Paris'; // Let's see what time it is Down Under
const timeInBrisbane = utcToZonedTime(today, timeZone);
console.log(`
Default time zone: ${format(today, 'yyyy-MM-dd HH:mm:ss')}
Time in Paris: ${format(timeInBrisbane, 'yyyy-MM-dd HH:mm:ss')
}`);

Date Comparisons

Date-fns provides you with comparison functions that help you determine if a given time is before, after, or within another date period. Or if the given date lies in the past or in the future of the comparing date. Some of the commonly used comparing functions include:

isAfter

Checks if the first date is after the second and returns a Boolean value true if the first date exists after the second date and if false, the arguments are not true.

Syntax: isAfter(date, dateToCompare)

  • Date – the date that should be after the second date (as the first argument)
  • DateToCompare – the second date to be compared with the first date. (As the second argument)

Example 1:

Import the functions you need.

const { isAfter,addHours, subHours } = require('date-fns');
const { isAfter,addHours, subHours } = require("date-fns");
const date1 = new Date();
const date2 = addHours(new Date(), 5);
const date3 = subHours(new Date(), 5);
console.log(isAfter(date1, date2));
console.log(isAfter(date1, date3));

Example 2:

const { isAfter, isFuture, addHours } = require("date-fns");
const date1 = new Date();
const date2 = addHours(new Date(), 5);
console.log(`Date1 is ${isAfter(date1, date2) ? "after" : "before"} Date2`);
console.log(`Date2 is ${isFuture(date2) ? "not" : ""} in the past`);

isBefore

Checks if the first date is before the second date.

const { isBefore, addHours, subHours } = require("date-fns");
const date1 = new Date();
const date2 = addHours(new Date(), 5);
const date3 = subHours(new Date(), 5);
console.log(isBefore(date1, date2));
console.log(isBefore(date1, date3));

isFuture

Checks if the given date is in the future in comparison to the date/time now.

Note: if the date we are comparing is the time right now, isFuture will return this as false. In such a case, date-fns will interpret the ’now’ date as the present time and not a future time.

const { isFuture, addHours, subHours } = require("date-fns");
const date1 = new Date();
const date2 = addHours(new Date(), 5);
const date3 = subHours(new Date(), 5);
console.log(isFuture(date1));
console.log(isFuture(date2));
console.log(isFuture(date3));

ASC and Desc

Compares a collection of dates and sort them in ascending or descending order.

const { compareDesc, compareAsc, addMonths, subYears } = require("date-fns");
const date1 = new Date();
const date2 = new Date("2019.04.12");
const date3 = new Date("2020/10/03");
const date4 = new Date("2021,01,19");
const date5 = addMonths(new Date(), 8);
const date6 = subYears(new Date(), 2);
const arrASC = [date1, date2, date3, date4, date5, date6];
const arrDesc = [date1, date2, date3, date4, date5, date6];
console.log(arrASC.sort(compareAsc));
console.log(arrDesc.sort(compareDesc));

There are many comparison function options such as:

isWeekend

Checks if a given date is a weekend.

const { isWeekend, addHours, subHours } = require("date-fns");
const date1 = new Date("2020,09,19");
const date2 = new Date("2020,09,18");
console.log(isWeekend(date1));
console.log(isWeekend(date2));

isDate

Checks if a given string value is an instance of a date and returns true is the date provided is actually a date value.

const { isDate} = require("date-fns");
// Will return true as the string provided is a date instance
const date1 = new Date("2020,09,19");
// Will return true as the string provided is a date instance
const date2 = new Date(2020,09,18);
// Will return true as NaN represent an invalid date to return true
const date3 = new Date(NaN);
// Will return false as the string provided is not a date instance new Date() is not included
const date4 = "2020,09,18";
// Will return true as the string 2020 is a date instance
const date5 = new Date("2020");
// Will return true as new Date() will return the current date which is a date instance
const date6 = new Date();
// Will return false as the string "not a date" is a date instance
const date7 = "not a date";

console.log(isDate(date1));
console.log(isDate(date2));
console.log(isDate(date3));
console.log(isDate(date4));
console.log(isDate(date5));
console.log(isDate(date6));
console.log(isDate(date7));

Check out more comparison functions and helpers such as isPastisEqualisExitsisMatch, and many more.

Date Validation

Date-fns provides you with date validation helpers with the isValid() function that checks if a given date is valid.

By default, date-fns returns a Boolean variable true if the date parsed is indeed a valid date or false if the date string parsed is not a valid date.

const { isValid } = require("date-fns");
const valid_date1 = isValid(new Date('2020, 09, 21'))
const valid_date2 = isValid(new Date('2020, 02, 30'))
console.log((valid_date1))
console.log((valid_date2))

However, in the example above, you will be surprised to find out the new Date ('2020, 02, 30') returns true yet the date itself is obviously invalid. There is no date with a February 30th day.

Interestingly, this is not a bug in date-fns. To elaborate this further enter a new Date ('2020, 02, 30') on your browser’s console (in my case I am using a Google chrome console).

This date instance will be interpreted as Sun Mar 01, 2020, 00:00:00 '2020, 02, 30'. February ends on 29th (2020 is a leap year) and the extra day will be added to represent the date of the next month, which indeed will be valid.

To avoid such instances parse the date before checking the isValid().

Lets run through another example:

const {isValid,parse} = require("date-fns");

const validate1 = parse('29.02.2020', 'dd.MM.yyyy', new Date());
const validate2 = parse('30.02.2020', 'dd.MM.yyyy', new Date());

console.log(validate1);
console.log(validate2);
console.log(isValid(validate1));
console.log(isValid(validate2));

Differences Between Dates

Date-fns provides several functions to manipulate and calculate the differences that exists between two given dates. These functions represent the difference between calculations for several units of time such as:

Each unit will get the number of the given unit differences between two dates.

For example:

Calculating the difference of days and the number of business days that exists between now and Christmas.

const {differenceInDays ,differenceInBusinessDays} = require("date-fns");
const startDate = new Date();
const endDate = new Date("2020,12,25");
const daysBetween = differenceInDays(endDate, startDate);
const workdaysBetween = differenceInBusinessDays(endDate, startDate);
console.log(daysBetween);
console.log(workdaysBetween);

Date-fns Intervals

Date-fns provides you with interval helpers to combine two dates and determine the time interval between them. An interval object has two properties:

  • Start – the start of the interval
  • End – the end of the interval

This interval helper includes

Head to the date-fns docs to check out more interval helpers and how you can apply them to your application.

Comparison Between Moment.js and Date-fns 🎁

Moment.js is a stand-alone open-source JavaScript framework wrapper for date objects. It eliminates native JavaScript date objects, which are cumbersome to use. Moment.js makes dates and time easy to display, format, parse, validate, and manipulate using a clean and concise API. Unlike date-fns, its biggest downside is that its API size is huge. For more information on Moment.js, check out this article.

As we have seen in the examples above, date-fns is a collection of many small and independent functions allowing you to only import functions that are needed. Unlike Moment.js where you create a moment instance to run functions from it. With Moment.js, there isn’t a way to import a specified function. That means you have to import the whole API chain even when loading a simple date thus creating performance overheads.

Example:

const moment = require('moment');
const today = moment();
console.log(today.format('YYYY MM DD'));

Date-fns only grabs the specific function and this makes is a much smaller library than Moment.js.

const {format} = require('date-fns');
const today =format(new Date(),'dd.MM.yyyy');
console.log(today);

moment@2.28.0 moment

Source: bundlephobia

date-fns@2.16.1 date-fns

Source: bundlephobia

Even so, if you love working with Moment.js, its size should not be a big concern. You can configure Moment.js with webpack to remove data that you aren’t using, such as locale plugins, and this will significantly reduce Moment.js bundle size.

Moment.js fits well when working with a big project because you will end up using much of Moment.js functionalities therefore the bundle size won’t matter. If you just want to load simple dates that need one or two methods then date-fns will definitely work in your favor.

If you are dealing with time zones, I would suggest you check out Moment.js. Its time zone functionalities are extensive compared to those of date-fns. Moment.js has more locale support functionalities to extend a more global reach with your date instances.

Statistical Comparison

  • NPM download stats npm-download-insights

Source: nodejs libhunt.

  • GitHub stats github-stats.png

Source: npmtrends

  • Popularity and activity popularity and activity popularity-and-activity

Source: npmtrends

Date Manipulating Framework Alternatives

Day.js

⏰ Day.js is a 2KBs immutable date library alternative to Moment.js with the same modern API.

  • 🕒 Familiar Moment.js API & patterns
  • 💪 Immutable
  • 🔥 Chainable
  • 🌐 I18n support
  • 📦 2kb mini library
  • 👫 All browsers supported

Source: iamkun

Luxon

Luxon is a library that makes it easier to work with dates and times in JavaScript. If you wanted to have, add and subtract them, format and parse them, ask them hard questions, and so on, Luxon provides a much easier and comprehensive interface than the native types with features such as:

  • DateTime, duration, and interval types
  • Immutable, chainable, unambiguous API
  • Parsing and formatting for common and custom formats
  • Native time zone and Intl support (no locale or tz files)

Source: moment/luxon

Fecha

Fecha is a lightweight date formatting and parsing (~2KB). Meant to replace the parsing and formatting functionality of Moment.js.

  • Size (Min. and Gzipped) 2.1KBs
  • Date parsing
  • Date formatting
  • Date manipulation

Source: taylorhakes

Timeago.js

🕗 ⌛ Timeago.js is a nano library(less than 2 kb) used to format datetime with time ago statement. eg: ‘3 hours ago’.

  • I18n supported
  • Time ago and time in supported
  • Real-time render supported
  • Node.js and browser supported
  • Well tested

Source: hustcc

Easytimer.js

Easy to use Timer/Chronometer/Countdown library compatible with AMD, ES6, and Typescript. Easytimer.js is a simple library for counting time in five different units: a tenth of seconds, seconds, minutes, hours, and days. It has interesting features:

  • The refresh interval can be configured in a tenth of seconds, seconds, minutes, and hours.
  • Dispatches events when the timer starts, stops, pauses and when every type of unit changes.
  • A custom callback can be defined and it will be executed with every timer refresh.
  • Two timer modes: Regular and Countdown.
  • Configurable start and target values.

Source: albert-gonzalez

Conclusion

Date-fns is a great library that you should put on your checklist if you have a project that needs some date manipulations. It has good support and is well maintained. This article is meant to introduce you to some of the common functions and give you a taste of this library’s scope. What libraries like Moment.js and date-fns do, can still be achieved with native JavaScript. However, they make working with date objects fun, easier, and with improved code readability.

Resources

Try Launching a Free Project in CloudFlow Today!

Comments:

Page Transistions in React.js using Framer Motion

Page Transistions in React.js using Framer Motion

React.js framework allows us to create single-page applications (commonly referred to as SPA). A SPA is an application in which the pages do not reload for in-page actions like clicking a hyperlink or clicking a button. The webpage transition is so...

read more
How To Format Form Data as JSON

How To Format Form Data as JSON

The browser Fetch API is used to make requests from a web page on the frontend to an API endpoint on the backend. On the other hand, the browser FormData API provides a precise way of accessing HTML form fields. These two native support browser...

read more