Package for formatting dates according to the Roman calendar
npm install roman-calendar
!Build
JS library for formatting dates according to the Roman calendar,
specifically according to the Imperial calendar after the Julian reforms.
The module exports a RomanDate class which is a subclass of the builtinDate. RomanDate provides two methods for date formatting:
- toShortRomanDate returns an abbreviated date string
- toLongRomanDate returns a fully spelled-out date string
The module also provides a script kalendarium that will format the provided
ISO date string and print the result to the console. If no argument is given
it will format the current date.
Using the kalendarium script assuming the current date is 25 January 2000:
``console`
$ kalendarium
a.d. VIII Kal. Feb. MMDCCLIII
$ kalendarium -l
ante diem octavum Kalendas Februarii MMDCCLIII
$ kalendarium 2024-20-01
a.d. XII Kal. Feb. MMDCCLXXVII
$ kalendarium -l 2024-20-01
ante diem duodecimum Kalendas Februarii MMDCCLXXVII
Using the library in your own script:
`typescript
import {RomanDate} from 'roman-calendar';
// assuming the current date is 25 January 2000
const date = new RomanDate('2000-01-25');
console.log(date.toShortRomanString()); // a.d. VIII Kal. Feb. MMDCCLIII
console.log(date.toLongRomanString()); // ante diem octavum Kalendas Februarii MMDCCLIII
``