Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
intl-relativeformat
Advanced tools
The intl-relativeformat npm package is used for formatting relative dates and times in a human-readable way. It leverages the Internationalization API to provide locale-aware formatting, making it easier to display dates and times relative to the current date and time.
Basic Relative Time Formatting
This feature allows you to format a date relative to the current time. In this example, it formats a date that is one hour ago.
const IntlRelativeFormat = require('intl-relativeformat');
const rf = new IntlRelativeFormat('en');
console.log(rf.format(Date.now() - 1000 * 60 * 60)); // 'an hour ago'
Locale-Specific Formatting
This feature allows you to format dates relative to the current time in a locale-specific manner. In this example, it formats a date that is one hour ago in French.
const IntlRelativeFormat = require('intl-relativeformat');
const rf = new IntlRelativeFormat('fr');
console.log(rf.format(Date.now() - 1000 * 60 * 60)); // 'il y a une heure'
Future Date Formatting
This feature allows you to format future dates relative to the current time. In this example, it formats a date that is one hour in the future.
const IntlRelativeFormat = require('intl-relativeformat');
const rf = new IntlRelativeFormat('en');
console.log(rf.format(Date.now() + 1000 * 60 * 60)); // 'in an hour'
Moment.js is a widely-used library for parsing, validating, manipulating, and formatting dates. It provides relative time formatting through its `fromNow` and `toNow` methods. Compared to intl-relativeformat, Moment.js offers a broader range of date manipulation features but is larger in size.
date-fns is a modern JavaScript date utility library that provides a variety of functions for working with dates, including relative time formatting through its `formatDistance` and `formatDistanceToNow` functions. It is modular and tree-shakeable, making it a lightweight alternative to Moment.js.
Luxon is a modern JavaScript library for working with dates and times, created by one of the Moment.js developers. It provides relative time formatting through its `toRelative` and `toRelativeCalendar` methods. Luxon is built on top of the native JavaScript Internationalization API, similar to intl-relativeformat, but offers a more comprehensive set of features.
Formats JavaScript dates to relative time strings (e.g., "3 hours ago").
This package aims to provide a way to format different variations of relative time. You can use this package in the browser and on the server via Node.js.
This implementation is very similar to moment.js, in concept, although it provides only formatting features based on the Unicode CLDR locale data, an industry standard that supports more than 200 languages.
Note: This IntlRelativeFormat
API may change to stay in sync with ECMA-402, but this package will follow semver.
This API is very similar to ECMA 402's DateTimeFormat and NumberFormat.
var rf = new IntlRelativeFormat(locales, [options]);
The locales
can either be a single language tag, e.g., "en-US"
or an array of them from which the first match will be used. options
provides a way to control the output of the formatted relative time string.
var output = rf.format(someDate, [options]);
The most common way to use this library is to construct an IntlRelativeFormat
instance and reuse it many times for formatting different date values; e.g.:
var rf = new IntlRelativeFormat('en-US');
var posts = [
{
id : 1,
title: 'Some Blog Post',
date : new Date(1426271670524)
},
{
id : 2,
title: 'Another Blog Post',
date : new Date(1426278870524)
}
];
posts.forEach(function (post) {
console.log(rf.format(post.date));
});
// => "3 hours ago"
// => "1 hour ago"
Uses industry standards CLDR locale data.
Style options for "best fit"
("yesterday") and "numeric"
("1 day ago") output.
Units options for always rendering in a particular unit; e.g. "30 days ago", instead of "1 month ago".
Ability to specify the "now" value from which the relative time is calculated, allowing format()
.
Formats numbers in relative time strings using Intl.NumberFormat
.
Optimized for repeated calls to an IntlRelativeFormat
instance's format()
method.
Intl
DependencyThis package assumes that the Intl
global object exists in the runtime. Intl
is present in all modern browsers, and there's work happening to integrate Intl
into Node.js.
Luckly, there's the Intl.js polyfill! You will need to conditionally load the polyfill if you want to support runtimes which Intl
is not already built-in. See Browser compatibility table if you have doubts.
Install package and polyfill:
npm install intl-relativeformat --save
npm install intl --save
Simply require()
this package:
if (!global.Intl) {
global.Intl = require('intl'); // polyfill for `Intl`
}
var IntlRelativeFormat = require('intl-relativeformat');
var rf = new IntlRelativeFormat('en');
var output = rf.format(dateValue);
Note: in Node.js, the data for all 200+ languages is loaded along with the library.
If the browser does not already have the Intl
APIs built-in, the Intl.js Polyfill will need to be loaded on the page along with the locale data for any locales that need to be supported:
<script src="intl/Intl.min.js"></script>
<script src="intl/locale-data/jsonp/en-US.js"></script>
Note: Modern browsers already have the Intl
APIs built-in, so you can load the Intl.js Polyfill conditionally, by for checking for window.Intl
.
Include the library in your page:
<script src="intl-relativeformat/dist/intl-relativeformat.min.js"></script>
By default, Intl RelativeFormat ships with the locale data for English (en
) built-in to the runtime library. When you need to format data in another locale, include its data; e.g., for French:
<script src="intl-relativeformat/dist/locale-data/fr.js"></script>
Note: All 200+ languages supported by this package use their root BCP 47 language tag; i.e., the part before the first hyphen (if any).
Install package:
npm install intl-relativeformat --save
Simply require()
this package and the specific locales you wish to support in the bundle:
var IntlRelativeFormat = require('intl-relativeformat');
require('intl-relativeformat/dist/locale-data/en.js');
require('intl-relativeformat/dist/locale-data/fr.js');
Note: in Node.js, the data for all 200+ languages is loaded along with the library, but when bundling it with Browserify/Webpack, the data is intentionally ignored (see package.json
for more details) to avoid blowing up the size of the bundle with data that you might not need.
IntlRelativeFormat
ConstructorTo format a date to relative time, use the IntlRelativeFormat
constructor. The constructor takes two parameters:
locales - {String | String[]} - A string with a BCP 47 language tag, or an array of such strings. If you do not provide a locale, the default locale will be used. When an array of locales is provided, each item and its ancestor locales are checked and the first one with registered locale data is returned. See: Locale Resolution for more details.
[options] - {Object} - Optional object with user defined options for format styles. See: Custom Options for more details.
Note: The rf
instance should be enough for your entire application, unless you want to use custom options.
IntlRelativeFormat
uses a locale resolution process similar to that of the built-in Intl
APIs to determine which locale data to use based on the locales
value passed to the constructor. The result of this resolution process can be determined by call the resolvedOptions()
prototype method.
The following are the abstract steps IntlRelativeFormat
goes through to resolve the locale value:
If no extra locale data is loaded, the locale will always resolved to "en"
.
If locale data is missing for a leaf locale like "fr-FR"
, but there is data for one of its ancestors, "fr"
in this case, then its ancestor will be used.
If there's data for the specified locale, then that locale will be resolved; i.e.,
var rf = new IntlRelativeFormat('en-US');
assert(rf.resolvedOptions().locale === 'en-US'); // true
The resolved locales are now normalized; e.g., "en-us"
will resolve to: "en-US"
.
Note: When an array is provided for locales
, the above steps happen for each item in that array until a match is found.
The optional second argument options
provides a way to customize how the relative time will be formatted.
By default, the relative time is computed to the best fit unit, but you can explicitly call it to force units
to be displayed in "second"
, "second-short"
, "minute"
, "minute-short"
, "hour"
, "hour-short"
, "day"
, "day-short"
, "month"
, "month-short"
, "year"
or "year-short"
:
var rf = new IntlRelativeFormat('en', {
units: 'day'
});
var output = rf.format(dateValue);
As a result, the output will be "70 days ago" instead of "2 months ago".
By default, the relative time is computed as "best fit"
, which means that instead of "1 day ago", it will display "yesterday", or "in 1 year" will be "next year", etc. But you can force to always use the "numeric" alternative:
var rf = new IntlRelativeFormat('en', {
style: 'numeric'
});
var output = rf.format(dateValue);
As a result, the output will be "1 day ago" instead of "yesterday".
resolvedOptions()
MethodThis method returns an object with the options values that were resolved during instance creation. It currently only contains a locale
property; here's an example:
var rf = new IntlRelativeFormat('en-us');
console.log(rf.resolvedOptions().locale); // => "en-US"
Notice how the specified locale was the all lower-case value: "en-us"
, but it was resolved and normalized to: "en-US"
.
format(date, [options])
MethodThe format method (which takes a JavaScript date or timestamp) and optional options
arguments will compare the date
with "now" (or options.now
), and returns the formatted string; e.g., "3 hours ago" in the corresponding locale passed into the constructor.
var output = rf.format(new Date());
console.log(output); // => "now"
If you wish to specify a "now" value, it can be provided via options.now
and will be used instead of querying Date.now()
to get the current "now" value.
This software is free to use under the Yahoo! Inc. BSD license. See the LICENSE file for license text and copyright information.
FAQs
Formats JavaScript dates to relative time strings.
The npm package intl-relativeformat receives a total of 120,001 weekly downloads. As such, intl-relativeformat popularity was classified as popular.
We found that intl-relativeformat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.