No description
Find a file
2026-05-28 14:14:23 -04:00
.claude chore(config): add AGENTS.md for dual-harness parity 2026-05-25 15:51:09 -04:00
.github docs: add quickstart, advanced guide, examples, and cross-validation test for luxon-hijri 2026-05-28 14:14:23 -04:00
src refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
.editorconfig feat: v2.0.0 — FCNA calendar, dual ESM/CJS build, weekday bug fix, full test suite 2026-02-25 13:25:11 -05:00
.gitignore refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
.npmrc chore: clear .npmrc to remove pnpm-only key that warns on npm publish 2026-02-25 15:09:10 -05:00
.nvmrc feat: v2.0.0 — FCNA calendar, dual ESM/CJS build, weekday bug fix, full test suite 2026-02-25 13:25:11 -05:00
.prettierrc refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
CHANGELOG.md docs(e6): portfolio polish — README trim, CHANGELOG, wiki pages 2026-05-28 14:00:16 -04:00
eslint.config.mjs refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
LICENSE feat: v2.0.0 — FCNA calendar, dual ESM/CJS build, weekday bug fix, full test suite 2026-02-25 13:25:11 -05:00
package.json chore: ADR-007 peer-dep migration to luxon v3, CHANGELOG update (v3.0.0 BREAKING) 2026-05-28 13:46:05 -04:00
pnpm-lock.yaml chore: ADR-007 peer-dep migration to luxon v3, CHANGELOG update (v3.0.0 BREAKING) 2026-05-28 13:46:05 -04:00
pnpm-workspace.yaml feat: v2.0.0 — FCNA calendar, dual ESM/CJS build, weekday bug fix, full test suite 2026-02-25 13:25:11 -05:00
README.md docs(e6): portfolio polish — README trim, CHANGELOG, wiki pages 2026-05-28 14:00:16 -04:00
test-cjs.cjs refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
test-crossval.mjs docs: add quickstart, advanced guide, examples, and cross-validation test for luxon-hijri 2026-05-28 14:14:23 -04:00
test.mjs refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
tsconfig.json refactor: code quality improvements across the board 2026-03-08 11:42:29 -04:00
tsup.config.ts feat: v2.1.0 — delegate engine logic to hijri-core 2026-02-25 14:14:29 -05:00

luxon-hijri

npm version CI License: MIT

Hijri/Gregorian date conversion and formatting for Luxon users. Thin adapter over hijri-core. Supports the Umm al-Qura calendar (1318-1500 AH, table-based) and the FCNA/ISNA calendar (astronomical, all Hijri years).

Installation

pnpm add luxon-hijri luxon hijri-core
# or
npm install luxon-hijri luxon hijri-core

Quick Start

import { toHijri, toGregorian, formatHijriDate } from 'luxon-hijri';

// Gregorian to Hijri (Umm al-Qura, default)
const h = toHijri(new Date(2023, 2, 23, 12));
// { hy: 1444, hm: 9, hd: 1 }

// Hijri to Gregorian
const g = toGregorian(1444, 9, 1);
// Date: 2023-03-23T00:00:00.000Z

// Format a Hijri date
formatHijriDate({ hy: 1444, hm: 9, hd: 1 }, 'iEEEE, iD iMMMM iYYYY ioooo');
// "Yawm al-Khamis, 1 Ramadan 1444 AH"

// FCNA/ISNA calendar
toHijri(new Date(2025, 2, 1, 12), { calendar: 'fcna' });

TypeScript

import { toHijri, toGregorian, formatHijriDate, isValidHijriDate } from 'luxon-hijri';
import type { HijriDate, CalendarSystem, ConversionOptions } from 'luxon-hijri';

Documentation

Full API reference, format token guide, calendar background, and architecture notes: GitHub Wiki

Acknowledgments

The Umm al-Qura table is derived from data published by KACST (King Abdulaziz City for Science and Technology). The FCNA new moon algorithm follows Jean Meeus, "Astronomical Algorithms," 2nd ed., Chapter 49.

License

MIT. Copyright (c) 2024-2026 Aric Camarata.