Sourcemap Explorer
Stack · npm package

luxon

Immutable date wrapper

latest 3.7.2· MIT· 151 versions publishedView on npm

About

Immutable date wrapper

dateimmutable

What detecting luxon tells you about a site

Luxon in a bundle signals a team that takes dates and time zones seriously. Built by a Moment.js maintainer as its modern successor, Luxon handles zones, durations and locale-aware formatting through a clean immutable API on top of the Intl platform features. Finding it suggests the app does real temporal work: scheduling, calendars, cross-timezone displays, or anything where getting offsets and DST right actually matters. It is a heavier, more capable choice than the tiny date-fns or day.js, so its presence implies the team valued correctness and a full-featured zone-aware API over minimal footprint.

Why the exact luxon version matters

Luxon leans on the platform's Intl and time-zone data, so behaviour can shift with the runtime as much as with the library, but its own majors have refined the DateTime and Duration APIs and tightened immutability guarantees. The exact version matters most for which formatting tokens and zone-handling behaviours are available, and for known fixes around parsing edge cases.

luxon in a real-world stack

When you find luxon in a bundle, it rarely travels alone. Often the only date library in a project, occasionally alongside a calendar UI component.

Quick facts

Latest version3.7.2
LicenseMIT
AuthorIsaac Cambron
Installnpm install luxon
Direct dependencies0

How Sourcemap Explorer detects luxon

luxon ships as v3.7.2, published 2025-09-05 and carries 0 direct dependencies, 151 versions on the registry. Those exact numbers are the footprint Sourcemap Explorer matches when luxon rides inside a deployed bundle — here is how the detection works.

We catch luxon from two complementary signals: bundled source paths and the embedded package.json. Modern bundlers (webpack, Vite, esbuild, Rollup, Turbopack) preserve the original node_modules/luxon/ paths inside the JavaScript sourcemap's sources[] array — that's the canonical signal. When the matching package.json is also captured in sourcesContent[], we read the exact version field — patch number included. No regex guessing, no version inference.

  1. 1

    Confirm the site exposes sourcemaps

    In DevTools Network, check the response headers of any application script for `SourceMap` or `X-SourceMap`. Failing that, fetch the script's last 4 KB and look for a `//# sourceMappingURL=` comment — that map is where the `luxon` paths live.

  2. 2

    Find the package in the bundle

    Open DevTools → Network → reload. Click any application script and look at its sourcemap. Inside, search `sources[]` for entries matching `node_modules/luxon/` — every match confirms the package is bundled. The matching `sourcesContent[i]` for `node_modules/luxon/package.json` gives you the exact installed version.

  3. 3

    Read the version directly from package.json

    Run `jq -r '. as $m | $m.sources | to_entries[] | select(.value | endswith("node_modules/luxon/package.json")) | $m.sourcesContent[.key] | fromjson | .version' bundle.js.map`. Sourcemap Explorer automates the same query in the popup.

Major releases of luxon

When each major version first landed. Major bumps are where breaking changes live, so this timeline is the fastest way to date the luxon version a site actually ships against the ecosystem.

Major
First release
Date
v3
3.0.0
2022-07-09
v2
2.0.0
2021-07-09
v1
1.0.0
2018-03-24
v0
0.0.1
2017-05-24

Recent security advisories for luxon

The 1 most recent advisories affecting some versions of luxon, aggregated from OSV.dev (GitHub Advisory + CVE data). A listing here doesn't mean the version a given site ships is affected — each advisory applies to a specific version range. Sourcemap Explorer reads the exact bundled version so you can check it against these ranges.

  1. HIGHCVE-2023-22467· 2023-01-09

    Luxon Inefficient Regular Expression Complexity vulnerability

Recent versions

Version
Released
3.7.2
2025-09-05
3.7.1
2025-07-09
3.7.0
2025-07-09
3.6.1
2025-03-31
3.6.0
2025-03-25
3.5.0
2024-08-03
3.4.4
2023-11-12
3.4.3
2023-09-05

luxon README

Live mirror of the GitHub README, for reference. Updated whenever the repo's default branch changes.

Luxon

MIT License Build Status NPM version Coverage Status PRs welcome

Luxon is a library for working with dates and times in JavaScript.

DateTime.now().setZone("America/New_York").minus({ weeks: 1 }).endOf("day").toISO();

🚀 The road to Luxon 4.0

Please read about and share your feedback on the plans for the next major version of Luxon!

Upgrading to 3.0

Guide

Features

  • 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).

Download/install

Download/install instructions

Documentation

Development

See contributing.

Phasers to stun

FAQ

What is luxon used for?

Immutable date wrapper

How can I tell if a website is using luxon?

Open the page in Chrome with the Sourcemap Explorer extension installed and read the Stack tab. We catch `luxon` from two complementary signals: `node_modules/luxon/` paths inside the JavaScript sourcemap, and the embedded `package.json` we read for exact-version detection. Without the extension you can do the same lookup manually in DevTools — the steps are listed in the "How Sourcemap Explorer detects" section above.

How do I find out which version of luxon a website is running?

Read it straight from the site's JavaScript sourcemap. When a build ships source maps, the bundled `luxon/package.json` carries the exact `version` string — Sourcemap Explorer extracts it in one click on the Stack tab, and you can do it by hand in DevTools by opening the `.map` file and searching for `node_modules/luxon/package.json`. That is far more reliable than inferring the version from an asset-hash or a `?ver=` query string, which is all surface-level detectors have to go on. The current npm release is 3.7.2, but real deployments frequently run an older pinned version — which is exactly why reading the bundled number matters.

What is the latest version of luxon?

3.7.2, as published on the npm registry. The "Recent versions" table on this page lists the most recent 8 releases with their release dates. Sourcemap Explorer reports the version actually bundled into a site, which can lag the latest release by months on real-world deployments.

Is luxon actively maintained?

Maintained but slow-moving — releases come every several months rather than weekly. The last published release was 2025-09-05. Source code: https://github.com/moment/luxon.

Does luxon have known security vulnerabilities?

1 recent advisory affecting some versions of luxon is listed in the "Recent security advisories" section above, aggregated from OSV.dev (GitHub Advisory + CVE data). Whether a particular site is exposed depends entirely on the exact version it ships — each advisory applies to a specific version range, not to the package as a whole. That is why the precise bundled version matters: Sourcemap Explorer reads the version a site actually runs, so you can check it against the affected ranges instead of assuming the latest release is what's deployed.

Where can I read more?

Project homepage: https://github.com/moment/luxon#readme. Source code: https://github.com/moment/luxon. Published on npm: https://www.npmjs.com/package/luxon. Licensed as MIT.

Detected by Sourcemap Explorer

When a bundle ships sourcemaps, we read the embedded package.json for luxon and report the precise version (the registry's latest is v3.7.2, published 2025-09-05; the bundled copy is often older). Without sourcemaps, an import / require in the page's scripts is enough to flag it.

Install free on Chrome