npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-red-contrib-datetime-format

v1.1.2

Published

A Node-RED node that formats datetime values (epoch, ISO 8601 or Date) into human-readable strings with configurable timezone, locale and format.

Readme

node-red-contrib-datetime-format

A Node-RED node that formats datetime values — the epoch timestamps, ISO strings and Date objects that flow through Node-RED — into human-readable strings, with a configurable timezone, locale and output format.

Powered by Luxon.

Features

  • Flexible input — reads from any msg/flow/global property (default msg.payload) and auto-detects the value type:
    • epoch milliseconds or seconds (auto-detected, or forced),
    • ISO 8601 strings (e.g. 2026-06-22T14:30:00Z),
    • JavaScript Date objects.
  • Configurable timezone — any IANA name (e.g. Europe/Zurich, Asia/Tokyo). Blank uses the server's local timezone.
  • Configurable locale — any BCP 47 locale (e.g. de-CH) for localised month/day names and ordering.
  • Two formatting modes:
    • Presets — named formats such as DATETIME_MED (e.g. Jun 22, 2026, 2:30 PM),
    • Custom tokens — Luxon format strings such as yyyy-LL-dd HH:mm:ss.
  • Configurable output — writes to any msg/flow/global property (default msg.payload), leaving everything else untouched.
  • Optional JSON output — write a structured object (formatted, iso, epoch, seconds, zone, locale) instead of a plain string.
  • Robust errors — unparseable input or an invalid timezone raises a catchable error (use a Catch node) and shows a red status; the flow keeps running.

Installation

From your Node-RED user directory (typically ~/.node-red):

npm install node-red-contrib-datetime-format

Or, to install this checkout locally for development:

cd ~/.node-red
npm install /path/to/this/repo

Then restart Node-RED. The datetime format node appears in the function category of the palette.

Usage

Wire it after any node that emits a datetime. For example:

[ inject (timestamp) ] → [ datetime format ] → [ debug ]

Configuration

| Field | Description | Default | | -------------- | ------------------------------------------------------------------------------------------- | ---------------------- | | Input | Property to read the datetime from (msg / flow / global). | msg.payload | | Epoch unit | How to interpret numeric input: Auto-detect, Milliseconds, or Seconds. | Auto-detect | | Timezone | IANA timezone name. Blank = server local time. | (blank → local) | | Locale | BCP 47 locale for names/ordering. Blank = system default. | (blank → default) | | Format | Preset (named format) or Custom tokens (Luxon format string). | Preset | | Preset | The named preset to use (shown when Format = Preset). | DATETIME_MED | | Tokens | The Luxon token string (shown when Format = Custom tokens). | yyyy-LL-dd HH:mm:ss | | Output | Property to write the result to (msg / flow / global). | msg.payload | | Output as JSON | Write a structured object instead of a plain string (see Output). | (off) |

Locale note. A blank Locale uses Node.js's default, which is derived from the LANG / LC_ALL / LC_TIME environment variables — not your OS regional settings. When those aren't set to a real locale (common for services, e.g. LANG=C.UTF-8), Node falls back to en-US, so output is US-formatted. For predictable results set Locale explicitly (e.g. de-CH), or start Node-RED with LANG/LC_ALL set to your locale.

Input

The input value (default msg.payload) may be:

| Type | Example | Notes | | --------------- | -------------------------------- | ---------------------------------------------------- | | epoch ms | 1700000000000 | ≥ 11 digits → milliseconds in auto mode | | epoch seconds | 1700000000 | ≤ 10 digits → seconds in auto mode | | numeric string | "1700000000000" | parsed as epoch | | ISO 8601 string | "2026-06-22T14:30:00+02:00" | offset honoured, then converted to the target zone | | Date object | new Date() | |

Output

The formatted string is written to the configured Output property. With the defaults, msg.payload is replaced by the formatted string.

Enable Output as JSON to write a structured object instead — handy when a downstream node needs more than the display string:

{
  "formatted": "Nov 14, 2023, 10:13 PM",
  "iso": "2023-11-14T22:13:20.000Z",
  "epoch": 1700000000000,
  "seconds": 1700000000,
  "zone": "UTC",
  "locale": "en-US"
}

| Field | Description | | ----------- | ----------------------------------------------------------- | | formatted | The formatted string, using the chosen preset / tokens. | | iso | ISO 8601 string in the target timezone. | | epoch | Epoch milliseconds. | | seconds | Epoch seconds (whole). | | zone | The resolved IANA timezone name. | | locale | The resolved locale. |

Presets

| Preset | Example (en-US, Europe/Zurich) | | --------------------------- | ------------------------------------------------- | | DATE_SHORT | 6/22/2026 | | DATE_MED | Jun 22, 2026 | | DATE_MED_WITH_WEEKDAY | Mon, Jun 22, 2026 | | DATE_FULL | June 22, 2026 | | DATE_HUGE | Monday, June 22, 2026 | | TIME_SIMPLE | 2:30 PM | | TIME_WITH_SECONDS | 2:30:45 PM | | TIME_24_SIMPLE | 14:30 | | TIME_24_WITH_SECONDS | 14:30:45 | | TIME_WITH_SHORT_OFFSET | 2:30:45 PM GMT+2 | | TIME_WITH_LONG_OFFSET | 2:30:45 PM Central European Summer Time | | TIME_24_WITH_SHORT_OFFSET | 14:30:45 GMT+2 | | TIME_24_WITH_LONG_OFFSET | 14:30:45 Central European Summer Time | | DATETIME_SHORT | 6/22/2026, 2:30 PM | | DATETIME_SHORT_WITH_SECONDS | 6/22/2026, 2:30:45 PM | | DATETIME_MED | Jun 22, 2026, 2:30 PM | | DATETIME_MED_WITH_SECONDS | Jun 22, 2026, 2:30:45 PM | | DATETIME_MED_WITH_WEEKDAY | Mon, Jun 22, 2026, 2:30 PM | | DATETIME_FULL | June 22, 2026 at 2:30 PM GMT+2 | | DATETIME_FULL_WITH_SECONDS | June 22, 2026 at 2:30:45 PM GMT+2 | | DATETIME_HUGE | Monday, June 22, 2026 at 2:30 PM Central European Summer Time | | DATETIME_HUGE_WITH_SECONDS | Monday, June 22, 2026 at 2:30:45 PM Central European Summer Time |

The examples above are en-US. In the editor, the Preset dropdown shows each example in your own locale (the browser reads your OS regional settings), so a de-CH user sees 22.06.2026, 14:30, etc. Note this is an editor preview only — the node's actual output follows the Locale field (see the note under Settings).

Custom tokens

Select Custom tokens and supply a Luxon format string. A few common tokens:

| Token | Meaning | Example | | ------ | ---------------------- | ------- | | yyyy | 4-digit year | 2026 | | LL | 2-digit month | 06 | | LLLL | full month name | June | | dd | 2-digit day | 22 | | HH | 2-digit hour (24h) | 14 | | hh | 2-digit hour (12h) | 02 | | mm | minutes | 30 | | ss | seconds | 45 | | a | AM/PM | PM | | ZZZZ | timezone abbreviation | CEST |

See the full Luxon token table.

Examples

| Input (msg.payload) | Timezone | Format / Tokens | Output (msg.payload) | | ----------------------- | --------------- | ------------------------ | ----------------------------- | | 1700000000000 | UTC | yyyy-LL-dd HH:mm:ss | 2023-11-14 22:13:20 | | 1700000000000 | Asia/Tokyo | yyyy-LL-dd HH:mm:ss | 2023-11-15 07:13:20 | | 1700000000000 | UTC (en-US) | Preset DATETIME_MED | Nov 14, 2023, 10:13 PM | | "2026-06-22T14:30:00Z"| Europe/Zurich | dd.LL.yyyy HH:mm | 22.06.2026 16:30 |

Development

npm install      # install luxon + dev dependencies
npm test         # run the mocha test suite

The runtime is split into:

Tests live in test/ and use node-red-node-test-helper.

License

MIT