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

@mohammadxali/jalaali-js

v2.0.0-preview.0

Published

Converts Gregorian and Jalaali calendars to each other (v2 preview — pending upstream PR to jalaali/jalaali-js)

Downloads

171

Readme

Jalaali JavaScript

TypeScript / JavaScript functions for converting between the Jalaali (Jalali, Persian, Khayyami, Khorshidi, Shamsi) and Gregorian calendar systems.

  • Written in TypeScript, with first-class .d.ts types
  • Dual ESM and CommonJS publish via the exports field
  • Zero runtime dependencies
  • Same proven Borkowski algorithm as v1 — bit-for-bit compatible conversions

v2 is a major release. If you are upgrading from v1, read the migration guide in CHANGELOG.md.

Note on the Intl API

If you just need to display a date and time in the Persian calendar, the ECMAScript Intl API has excellent browser support and may be enough:

const d = new Date(2022, 2, 21)

new Intl.DateTimeFormat('fa-IR').format(d)
// => ۱۴۰۱/۱/۱

new Intl.DateTimeFormat('fa-IR', { dateStyle: 'full', timeStyle: 'long' }).format(d)
// => ۱۴۰۱ فروردین ۱, دوشنبه، ساعت ۰:۰۰:۰۰ (‎+۳:۳۰ گرینویچ)

new Intl.DateTimeFormat('en-US-u-ca-persian', { dateStyle: 'full' }).format(d)
// => Monday, Farvardin 1, 1401 AP

The jalaali-js algorithm diverges from Intl after Gregorian year 2256 (Jalali 1634) because of how leap years are computed. Inside the 1800–2256 range the two agree exactly. See this comparison.

Reach for jalaali-js when you need to manipulate dates — arithmetic, validation, week boundaries, Julian Day numbers — or when you target runtimes (or environments) that ship without Intl.

Install

pnpm add jalaali-js
# or
npm install jalaali-js
# or
yarn add jalaali-js

Requires Node 20 or newer.

Usage

ESM (recommended)

import { toJalaali, toGregorian } from 'jalaali-js'

toJalaali(2016, 4, 11) // { jy: 1395, jm: 1, jd: 23 }
toGregorian(1395, 1, 23) // { gy: 2016, gm: 4, gd: 11 }

CommonJS

const { toJalaali, toGregorian } = require('jalaali-js')

toJalaali(2016, 4, 11)

Browser via CDN

The npm package ships ESM and CJS; consume it through a CDN that supports ESM imports:

<script type="module">
  import { toJalaali } from 'https://esm.sh/jalaali-js'
  console.log(toJalaali(2016, 4, 11))
</script>

API

All exports are named and fully typed.

toJalaali(gy, gm, gd) → { jy, jm, jd }

toJalaali(2016, 4, 11) // { jy: 1395, jm: 1, jd: 23 }

toJalaali(date) → { jy, jm, jd }

toJalaali(new Date(2016, 3, 11)) // { jy: 1395, jm: 1, jd: 23 }

toGregorian(jy, jm, jd) → { gy, gm, gd }

toGregorian(1395, 1, 23) // { gy: 2016, gm: 4, gd: 11 }

isValidJalaaliDate(jy, jm, jd) → boolean

isValidJalaaliDate(1394, 12, 30) // false
isValidJalaaliDate(1395, 12, 30) // true

isLeapJalaaliYear(jy) → boolean

isLeapJalaaliYear(1394) // false
isLeapJalaaliYear(1395) // true

Throws RangeError if jy is outside the supported range (-61 … 3177).

jalaaliMonthLength(jy, jm) → number

jalaaliMonthLength(1394, 12) // 29
jalaaliMonthLength(1395, 12) // 30

jalCal(jy) → { leap, gy, march }

Whether the Jalaali year is leap (leap === 0), the Gregorian year of its start, and the day in March of Farvardin 1.

jalCal(1390) // { leap: 3, gy: 2011, march: 21 }
jalCal(1391) // { leap: 0, gy: 2012, march: 20 }
jalCal(1395) // { leap: 0, gy: 2016, march: 20 }

jalCalShort(jy) → { gy, march }

Faster variant that skips the leap-cycle calculation when you only need gy and march. New in v2; replaces the v1 jalCal(jy, true) overload.

jalCalShort(1391) // { gy: 2012, march: 20 }

j2d(jy, jm, jd) → number

Jalaali date → Julian Day number.

j2d(1395, 1, 23) // 2457490

d2j(jdn) → { jy, jm, jd }

Julian Day number → Jalaali date.

d2j(2457490) // { jy: 1395, jm: 1, jd: 23 }

g2d(gy, gm, gd) → number

Gregorian date → Julian Day number. Tested good from 1 March, -100100 (of both calendars) up to a few million years into the future.

g2d(2016, 4, 11) // 2457490

d2g(jdn) → { gy, gm, gd }

Julian Day number → Gregorian date. Covers jdn ≥ -34839655 (year -100100 of both calendars).

d2g(2457490) // { gy: 2016, gm: 4, gd: 11 }

jalaaliToDateObject(jy, jm, jd, h?, m?, s?, ms?) → Date

Convert a Jalaali date (optionally with time) to a JavaScript Date.

jalaaliToDateObject(1400, 4, 30) // new Date(2021, 6, 21)
jalaaliToDateObject(1400, 4, 30, 14, 30) // new Date(2021, 6, 21, 14, 30)

jalaaliWeek(jy, jm, jd) → { saturday, friday }

Saturday and Friday of the Jalaali week containing the given date. The Jalaali week starts on Saturday.

jalaaliWeek(1400, 4, 30)
// { saturday: { jy: 1400, jm: 4, jd: 26 },
//   friday:   { jy: 1400, jm: 5, jd: 1 } }

Development

pnpm install
pnpm typecheck
pnpm test
pnpm build
pnpm bench

About

The Jalali calendar is a solar calendar used historically in Persia and still in use today in Iran and Afghanistan. See Wikipedia and the Calendar Converter for background.

Conversions are based on the algorithm by Kazimierz M. Borkowski.

License

MIT