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 🙏

© 2024 – Pkg Stats / Ryan Hefner

holiday-greetfinder

v0.0.2

Published

A utility that lets you determine if a given date is a holiday and also show a greeting. Works until 2028, no API access required.

Downloads

152

Readme

Holiday Checker

Ever wanted to show a greeting for a major holiday in your app without manually writing it out? This library has you covered!

Example usage:

getHolidayGreeting('2024-10-31', 'Asia/Tokyo')      => Happy Diwali 🪔
getHolidayGreeting('2024-06-16', 'America/New_York') => Eid Mubarak 🌙

This is a simple library for checking cultural and religious holidays worldwide. This package supports both checking specific holidays and getting holiday greetings based on dates.

There are no external dependencies and no reliance on an API.

Note: This will work until 2028, I will likely update the data way before that :) I tried to write logic to compute these dates but that got very complex. Sometimes hardcoding is best!

Installation

npm install holiday-greetfinder

Features

  • Check for specific holidays using boolean functions
  • Get holiday greetings for any given date
  • Timezone support for accurate holiday checking globally
  • Support for fixed date holidays and variable date holidays
  • Coverage for major cultural and religious celebrations

Holidays

You can determine the following holidays (and show these greetings for them!) Merry Christmas Happy Christmas Eve Eid Mubarak Happy Hanukkah Chag Pesach Sameach Shana Tova Happy Diwali Happy Easter Happy Earth Day Happy Valentine's Day Happy Halloween Happy New Year Happy Thanksgiving Happy Father's Day Happy Mother's Day Happy US Independence Day Happy St. Patrick's Day ¡Feliz Cinco de Mayo! Happy Africa Day Happy Pride Happy Holi G'mar Chatima Tova Happy Canadian Thanksgiving Happy Lunar New Year Happy Carnival Happy Junkanoo Happy Nowruz Happy Vesak ¡Feliz Día de los Muertos! Prost Oktoberfest!

Usage

Boolean Holiday Functions

Each holiday has its own boolean function that returns true if the given date matches the holiday:

import { 
  isChristmas,
  isDiwali,
  isEidMubarak,
  isHanukkah
  // ... other holiday functions
} from 'holiday-checker';

// Check if a date is Christmas
isChristmas('2024-12-25') // true
isChristmas('2024-12-24') // false

// Check if a date is Diwali
isDiwali('2024-10-31') // true
isDiwali('2024-10-30') // false

// Check with timezone
isEidMubarak('2024-04-10', 'Asia/Dubai') // true
isHanukkah('2024-12-25', 'America/New_York') // true

Available Holiday Functions

isChristmas(date: string, timezone?: string): boolean
isChristmasEve(date: string, timezone?: string): boolean
isEidMubarak(date: string, timezone?: string): boolean
isHanukkah(date: string, timezone?: string): boolean
isPassover(date: string, timezone?: string): boolean
isRoshHashanah(date: string, timezone?: string): boolean
isDiwali(date: string, timezone?: string): boolean
isEaster(date: string, timezone?: string): boolean
isEarthDay(date: string, timezone?: string): boolean
isValentinesDay(date: string, timezone?: string): boolean
isHalloween(date: string, timezone?: string): boolean
isNewYear(date: string, timezone?: string): boolean
isThanksgiving(date: string, timezone?: string): boolean
isFathersDay(date: string, timezone?: string): boolean
isMothersDay(date: string, timezone?: string): boolean
isIndependenceDay(date: string, timezone?: string): boolean
isStPatricksDay(date: string, timezone?: string): boolean
isCincoDeMayo(date: string, timezone?: string): boolean
isAfricaDay(date: string, timezone?: string): boolean
isHoli(date: string, timezone?: string): boolean
isYomKippur(date: string, timezone?: string): boolean
isCanadianThanksgiving(date: string, timezone?: string): boolean
isLunarNewYear(date: string, timezone?: string): boolean
isCarnival(date: string, timezone?: string): boolean
isJunkanoo(date: string, timezone?: string): boolean
isNowruz(date: string, timezone?: string): boolean
isVesak(date: string, timezone?: string): boolean
isDiaDeLosMuertos(date: string, timezone?: string): boolean
isOktoberfest(date: string, timezone?: string): boolean

Holiday Greeting Function

The getHolidayGreeting function returns an array of holiday greetings for a given date:

import { getHolidayGreeting } from 'holiday-checker';

// Get holidays for a specific date
const holidays = getHolidayGreeting('2024-12-25');
console.log(holidays);
// [
//   { greeting: "Merry Christmas", emoji: "🎄" },
//   { greeting: "Happy Hanukkah", emoji: "🕎" }  // When holidays overlap
// ]

// Get holidays for a date with no celebrations
const noHolidays = getHolidayGreeting('2024-03-15');
console.log(noHolidays); // []

Timezone Support

All functions support an optional timezone parameter using IANA timezone identifiers. You should provide these for the best result:

// Check Diwali in different timezones
isDiwali('2024-10-31', 'Asia/Kolkata')    // true
isDiwali('2024-10-31', 'America/New_York') // true

// Get holiday greetings for different timezones
getHolidayGreeting('2024-10-31', 'Asia/Tokyo')      => Happy Diwali 🪔
getHolidayGreeting('2024-06-16', 'America/New_York') => Eid Mubarak 🌙

// Examples of supported timezones:
// - 'America/New_York'
// - 'America/Los_Angeles'
// - 'Europe/London'
// - 'Asia/Tokyo'
// - 'Asia/Kolkata'
// - 'Australia/Sydney'
// etc.

Data Coverage

  • Fixed dates are supported indefinitely
  • Variable dates (religious/lunar holidays) are supported from 2024 to 2031
  • All dates are based on official calendars and recognized observances

Notes

  1. Date strings should be in 'YYYY-MM-DD' format
  2. Timezone support uses IANA timezone identifiers
  3. Some holidays may span multiple days
  4. Religious holidays may vary by region and observation

Known Limitations

  1. Variable date holidays are only supported until 2028
  2. Some regional variations of holidays might not be included
  3. Local government-specific holidays are not included

License

MIT