Awesome
+ = ngx-date-fns
date-fns pipes for Angular applications.
Table Of Contents
<a name="requirememnts" />Requirememnts
The latest version of this library requires:
- date-fns
>= v3.0.0
. - Angular
>= v17.0.0
.
Installation
npm install --save date-fns
npm install --save ngx-date-fns
Installation for date-fns v2
npm install --save date-fns@2.30.0
npm install --save ngx-date-fns@10.0.1
- ngx-date-fns@10.0.1 docs
<a name="v1-support" />⚠️ There's a range of date-fns versions for which tree shaking is broken, so we recommend that you either install
v2.16.1
or>= v2.21.1
.
Installation for date-fns v1
npm install --save date-fns@1.29.0
npm install --save ngx-date-fns@4.0.3
- ngx-date-fns@4.0.3 docs
Basic Usage
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import 'zone.js';
import { es } from 'date-fns/locale';
import { DateFnsModule } from 'ngx-date-fns';
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, DateFnsModule],
template: `
<p>{{ dateOne | dfnsFormat: 'MM/dd/yyyy' }}</p>
<p>{{ [dateOne, dateTwo] | dfnsMin | dfnsFormat: 'EEE LLLL d yyyy' }}</p>
<p>
{{ [dateOne, dateTwo] | dfnsMax | dfnsFormat: 'EEE LLLL d yyyy' }}
</p>
<p>
{{ dateThree | dfnsFormatDistanceToNow: options }} - (Explicit 'es'
locale)
</p>
<p>{{ 0 | dfnsWeekdayName: 'full':options }} - (Explicit 'es' locale)</p>
<p>
{{
'12 de Marzo'
| dfnsParse: parseFormat:parseDate:parseLocale
| dfnsFormat: 'MM/dd/yyyy'
}}
</p>
`
})
export class App {
dateOne = new Date(2016, 0, 1);
dateTwo = new Date(2017, 0, 1);
dateThree: Date;
options = {
locale: es,
addSuffix: true
};
parseDate = new Date(2010, 0, 1);
parseFormat = `do 'de' MMMM`;
parseLocale = { locale: es };
constructor() {
this.dateThree = new Date();
this.dateThree.setDate(this.dateThree.getDate() - 6);
}
}
bootstrapApplication(App);
The output:
01/01/2016
Fri January 1 2016
Sun January 1 2017
hace 6 días - (Explicit 'es' locale)
lunes - (Explicit 'es' locale)
03/12/2010
<a name="locales" />
Working with locales
<a name="locale-globally" />All locale-aware pipes use English by default.
Changing locale globally
Instead of passing the locale to each pipe via options
you can set it globally in one single step by overriding the default DateFnsConfiguration
implementation:
// app.config.ts
import { ApplicationConfig } from '@angular/core';
import { DateFnsConfigurationService } from 'ngx-date-fns';
import { fr } from 'date-fns/locale';
const frenchConfig = new DateFnsConfigurationService();
frenchConfig.setLocale(fr);
export const appConfig: ApplicationConfig = {
providers: [{ provide: DateFnsConfigurationService, useValue: frenchConfig }]
};
// main.ts
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import 'zone.js';
import { es } from 'date-fns/locale';
import { DateFnsModule } from 'ngx-date-fns';
import { appConfig } from './app.config';
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, DateFnsModule],
template: `
(...)
`
})
export class App {
// (...)
}
bootstrapApplication(App, appConfig).catch(err => console.error(err));
<a name="locale-runtime" />
Changing locale at runtime
It is also possible to change the default locale at runtime:
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import 'zone.js';
import { es, de } from 'date-fns/locale';
import { DateFnsConfigurationService, DateFnsModule } from 'ngx-date-fns';
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, DateFnsModule],
template: `
<p>{{ dateOne | dfnsFormat: 'EEE LLLL d yyyy' }}</p>
<hr />
Set default locale to: <a href="#" (click)="changeToGerman()">German</a>,
<a href="#" (click)="changeToSpanish()">Spanish</a>.
`
})
export class App {
dateOne = new Date(2016, 0, 1);
constructor(public config: DateFnsConfigurationService) {}
changeToGerman() {
this.config.setLocale(de);
}
changeToSpanish() {
this.config.setLocale(es);
}
}
bootstrapApplication(App);
<a name="pure-impure" />
Pure or impure?
Should I use the pure or impure version of the locale-aware pipes?
The answer is quite simple:
- Do you set the locale only once when the application starts?
- Use only pure pipes.
- Do you need to change the locale at runtime?
- Use impure pipes.
The main difference is that pure pipes do not get notified when the locale is changed via DateFnsConfiguration.setLocale(locale: Locale)
, because the instance is not kept in memory. Impure pipes, on the other hand, are kept in memory and listen for Locale change notifications, which adds some memory and performance overhead.
Available pipes
<a name="misc-pipes" />All pipes are pure unless stated otherwise.
Misc
<a name="format-pipes" />Format
Since
v7.0.0
invalid Dates will return an empty string instead of throwing an exception.
- dfnsFormat (impure)
- dfnsFormatRelative (impure)
- dfnsFormatDistance (impure)
- dfnsFormatDistanceStrict (impure)
- dfnsFormatDistanceToNow (impure)
- dfnsFormatDistanceToNowStrict (impure)
- dfnsFormatDuration (impure)
Get
- dfnsGetOverlappingDaysInIntervals
- dfnsGetTime
- dfnsGetMilliseconds
- dfnsGetSeconds
- dfnsGetMinutes
- dfnsGetHours
- dfnsGetDate
- dfnsGetDayOfYear
- dfnsGetDay
- dfnsGetISODay
- dfnsGetISOWeek
- dfnsGetDaysInMonth
- dfnsGetMonth
- dfnsGetQuarter
- dfnsGetDaysInYear
- dfnsGetYear
- dfnsGetISOWeeksInYear
- dfnsGetISOWeekYear
- dfnsGetUnixTime
- dfnsGetWeek (impure)
- dfnsGetWeekOfMonth (impure)
- dfnsGetWeeksInMonth (impure)
- dfnsGetDecade
- dfnsGetWeekYear (impure)
Difference
- dfnsDifferenceInMilliseconds
- dfnsDifferenceInSeconds
- dfnsDifferenceInMinutes
- dfnsDifferenceInHours
- dfnsDifferenceInCalendarDays
- dfnsDifferenceInBusinessDays
- dfnsDifferenceInDays
- dfnsDifferenceInCalendarWeeks
- dfnsDifferenceInWeeks
- dfnsDifferenceInCalendarISOWeeks
- dfnsDifferenceInCalendarMonths
- dfnsDifferenceInMonths
- dfnsDifferenceInCalendarQuarters
- dfnsDifferenceInQuarters
- dfnsDifferenceInCalendarYears
- dfnsDifferenceInYears
- dfnsDifferenceInCalendarISOWeekYears
- dfnsDifferenceInISOWeekYears
Add
- dfnsAddMilliseconds
- dfnsAddSeconds
- dfnsAddMinutes
- dfnsAddHours
- dfnsAddBusinessDays
- dfnsAddDays
- dfnsAddWeeks
- dfnsAddMonths
- dfnsAddQuarters
- dfnsAddYears
- dfnsAddISOWeekYears
Subtract
- dfnsSubMilliseconds
- dfnsSubSeconds
- dfnsSubMinutes
- dfnsSubHours
- dfnsSubDays
- dfnsSubWeeks
- dfnsSubMonths
- dfnsSubQuarters
- dfnsSubYears
- dfnsSubISOWeekYears
End
- dfnsEndOfSecond
- dfnsEndOfMinute
- dfnsEndOfHour
- dfnsEndOfDay
- dfnsEndOfToday
- dfnsEndOfTomorrow
- dfnsEndOfYesterday
- dfnsEndOfWeek
- dfnsEndOfISOWeek
- dfnsEndOfMonth
- dfnsEndOfQuarter
- dfnsEndOfYear
- dfnsEndOfISOWeekYear
Start
- dfnsStartOfSecond
- dfnsStartOfMinute
- dfnsStartOfHour
- dfnsStartOfDay
- dfnsStartOfToday
- dfnsStartOfTomorrow
- dfnsStartOfYesterday
- dfnsStartOfWeek (impure)
- dfnsStartOfISOWeek
- dfnsStartOfMonth
- dfnsStartOfQuarter
- dfnsStartOfYear
- dfnsStartOfISOWeekYear
- dfnsStartOfDecade
- dfnsStartOfWeekYear (impure)
Last Day Of
- dfnsLastDayOfWeek (impure)
- dfnsLastDayOfISOWeek
- dfnsLastDayOfMonth
- dfnsLastDayOfQuarter
- dfnsLastDayOfYear
- dfnsLastDayOfISOWeekYear
- dfnsLastDayOfDecade
Is...?
- dfnsIsAfter
- dfnsIsBefore
- dfnsIsDate
- dfnsIsEqual
- dfnsIsFuture
- dfnsIsPast
- dfnsIsValid
- dfnsIsToday
- dfnsIsWeekend
- dfnsIsSameMonth
- dfnsIsSameYear
- dfnsIsExists
- dfnsIsFirstDayOfMonth
- dfnsIsFriday
- dfnsIsLastDayOfMonth
- dfnsIsLeapYear
- dfnsIsMatch (impure)
- dfnsIsMonday
- dfnsIsSameDay
- dfnsIsSameHour
- dfnsIsSameISOWeekYear
- dfnsIsSameISOWeek
- dfnsIsSameMinute
- dfnsIsSameMonth
- dfnsIsSameQuarter
- dfnsIsSameSecond
- dfnsIsSameWeek
- dfnsIsSameYear
- dfnsIsSaturday
- dfnsIsSunday
- dfnsIsThisHour
- dfnsIsThisISOWeek
- dfnsIsThisMinute
- dfnsIsThisMonth
- dfnsIsThisQuarter
- dfnsIsThisSecond
- dfnsIsThisWeek (impure)
- dfnsIsThisYear
- dfnsIsThursday
- dfnsIsToday
- dfnsIsTomorrow
- dfnsIsTuesday
- dfnsIsWednesday
- dfnsIsWithinInterval
- dfnsIsYesterday
Utils
A collection of utilities built around date-fns functions.
dfnsFormatRelativeToNow
This pipe is (impure), but there's the pure version
dfnsFormatRelativeToNowPure
too.
Same as dfnsFormatRelative
but the date to comapre against is always Date.now()
.
dfnsWeekdayName
This pipe is (impure)
Given a weekday number, returns its name.
@param WeekdayNameFormat
Optional weekday format. Allowed values are:
x1
: One char. 'M' for Monday.x2
: Two chars. 'Mo' for Monday.x3
: Three chars. 'Mon' for Monday.full
: Full weekday name. 'Monday' for Monday.
Defaults to full
.
@param Locale
Optional date-fns Locale
object.
Optional locale object.
Basic example
<div>
<!-- Prints Monday -->
{{ 0 | dfnsWeekdayName }}
</div>
<div>
<!-- Prints Mon -->
{{ 0 | dfnsWeekdayName : 'x3' }}
</div>