-
Notifications
You must be signed in to change notification settings - Fork 0
basic usage
github-actions[bot] edited this page May 30, 2026
·
2 revisions
import dayjs from 'dayjs';
import hijriPlugin from 'dayjs-hijri-plus';
dayjs.extend(hijriPlugin);const today = dayjs();
const h = today.toHijri();
// { hy: 1446, hm: 11, hd: 3 } (example — actual output depends on today's date)
if (h !== null) {
console.log(`${h.hd} / ${h.hm} / ${h.hy}`);
}// 23 March 2023 = 1 Ramadan 1444 AH
const d = dayjs('2023-03-23');
const h = d.toHijri();
console.log(h?.hy); // 1444
console.log(h?.hm); // 9 (Ramadan is the 9th month)
console.log(h?.hd); // 1const gregorian = dayjs.fromHijri(1444, 9, 1);
console.log(gregorian.format('YYYY-MM-DD')); // '2023-03-23'const d = dayjs('2023-03-23');
console.log(d.hijriYear()); // 1444
console.log(d.hijriMonth()); // 9
console.log(d.hijriDay()); // 1const d = dayjs('2023-03-23');
d.formatHijri('iD iMMMM iYYYY'); // '1 Ramadan 1444'
d.formatHijri('iDD/iMM/iYYYY'); // '01/09/1444'
d.formatHijri('YYYY-MM-DD'); // 'YYYY-MM-DD' — use .format() for Gregorian-only
d.formatHijri('YYYY (iYYYY/iM/iD)'); // '2023 (1444/9/1)'const d = dayjs('2023-03-23');
const fcna = d.toHijri({ calendar: 'fcna' });
// Near month boundaries, UAQ and FCNA may differ by one day
console.log(fcna?.hy); // 1444
console.log(fcna?.hm); // 9
console.log(fcna?.hd); // 1 or 2 depending on the month boundaryconst dayjs = require('dayjs');
const hijriPlugin = require('dayjs-hijri-plus');
dayjs.extend(hijriPlugin);
const d = dayjs('2023-03-23');
console.log(d.hijriYear()); // 1444dayjs-hijri-plus · MIT License · npm · Issues
Guides
Examples
Reference
API Pages
- plugin (default)
- toHijri
- isValidHijri
- hijriYear
- hijriMonth
- hijriDay
- formatHijri
- fromHijri
- registerCalendar
Community