import {calendar, Location} from '@hebcal/core';
const options: CalOptions = {
year: 1981,
isHebrewYear: false,
candlelighting: true,
location: Location.lookup('San Francisco'),
sedrot: true,
omer: true,
};
const events = calendar(options);
for (const ev of events) {
const hd = ev.getDate();
const date = hd.greg();
console.log(date.toLocaleDateString(), ev.render('en'), hd.toString());
}
Calculates holidays and other Hebrew calendar events based on CalOptions.
Each holiday is represented by an Event object which includes a date, a description, flags and optional attributes. If given no options, returns holidays for the Diaspora for the current Gregorian year.
The date range returned by this function can be controlled by:
options.year- Gregorian (e.g. 1993) or Hebrew year (e.g. 5749)options.isHebrewYear- to interpretyearas Hebrew yearoptions.numYears- generate calendar for multiple years (default 1, maximum 2000)options.month- Gregorian or Hebrew month (to filter results to a single month)Alternatively, specify start and end days with
Dateor HDate instances:options.start- use specific start date (requiresenddate)options.end- use specific end date (requiresstartdate)Unless
options.noHolidays == true, default holidays include:options.noMinorFast)options.noSpecialShabbat)options.noModern)options.noRoshChodesh)Holiday and Torah reading schedules differ between Israel and the Disapora. Set
options.il=trueto use the Israeli schedule.Additional non-default event types can be specified:
options.sedrot)options.omer)options.shabbatMevarchim)options.molad)options.yomKippurKatan)options.behab)options.yizkor)Daily Study of texts are supported by the @hebcal/learning package, for example:
options.dailyLearning.dafYomi)options.dailyLearning.yerushalmi)options.dailyLearning.mishnaYomi)options.dailyLearning.nachYomi)Candle-lighting and Havdalah times are approximated using latitude and longitude specified by the Location class. The
Locationclass contains a small database of cities with their associated geographic information and time-zone information. If you ever have any doubts about Hebcal's times, consult your local halachic authority. If you enter geographic coordinates above the arctic circle or antarctic circle, the times are guaranteed to be wrong.To add candle-lighting options, set
options.candlelighting=trueand setoptions.locationto an instance ofLocation. By default, candle lighting time is 18 minutes before sundown in the Diaspora and 20 minutes before sundown in Israel (40 minutes for Jerusalem, 30 minutes for Haifa and Zikhron Ya'akov) and Havdalah is calculated according to Tzeit Hakochavim - Nightfall (the point when 3 small stars are observable in the night time sky with the naked eye). The default Havdalah option (Tzeit Hakochavim) is calculated when the sun is 8.5° below the horizon. These defaults can be changed using these options:options.candleLightingMins- minutes before sundown to light candlesoptions.havdalahMins- minutes after sundown for Havdalah (typical values are 42, 50, or 72). Havdalah times are suppressed whenoptions.havdalahMins=0.options.havdalahDeg- degrees for solar depression for Havdalah. Default is 8.5 degrees for 3 small stars. Use 7.083 degrees for 3 medium-sized stars. Havdalah times are suppressed whenoptions.havdalahDeg=0.If both
options.candlelighting=trueandoptions.locationis specified, Chanukah candle-lighting times and minor fast start/end times will also be generated. Chanukah candle-lighting is at Bein HaShmashos (13.5 minutes before the sun is 7.083° below the horizon in the evening) on weekdays, at regular candle-lighting time on Fridays, and at regular Havdalah time on Saturday night (see above).Minor fasts begin at Alot HaShachar (sun is 16.1° below the horizon in the morning). They end when 3 medium-sized stars are observable in the night sky (sun is 7.083° below the horizon in the evening) in the Diaspora, or 15 minutes after sunset in Israel (Rabbi Deblitzky's practice). Override with:
options.fastEndDeg- degrees of solar depression for the end of a minor fastoptions.fastEndMins- minutes after sunset for the end of a minor fast (mutually exclusive withoptions.fastEndDeg)Tish'a B'Av is different: it begins at sunset on the previous day and always ends at tzeit 6.45° (Rabbi Yechiel Michel Tucazinsky), ignoring
options.fastEndDegandoptions.fastEndMins. When a minor fast falls on a Friday the end time is suppressed, because Shabbat begins before nightfall.Two options also exist for generating an Event with the Hebrew date:
options.addHebrewDates- print the Hebrew date for the entire date rangeoptions.addHebrewDatesForEvents- print the Hebrew date for dates with some eventsLastly, translation and transliteration of event titles is controlled by
options.localeand the Locale API.@hebcal/coresupports three locales by default:en- default, Sephardic transliterations (e.g. "Shabbat")ashkenazi- Ashkenazi transliterations (e.g. "Shabbos")he- Hebrew (e.g. "שַׁבָּת")Additional locales (such as
ruorfr) are supported by the @hebcal/locales package