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-jp-dayjs

v0.1.2

Published

Wrapper of @holiday-jp/holiday_jp with Day.js, in fixed timezone 'Asia/Tokyo'

Downloads

12

Readme

holiday-jp-dayjs

npm version npm license test workflow

Wrapper of @holiday-jp/holiday_jp with Day.js

1. Features

✅ Gets holidays in Japan utilizing @holiday-jp/holiday_jp
✅ Checks the given date in fixed timezone "Asia/Tokyo", independent of running environment
✅ Fixes bug of function: between
❌ Unable to load specific years only, but all the years automatically

2. Install & Usage

In HTML

<script src="https://cdn.jsdelivr.net/npm/holiday-jp-dayjs@^0.1.0/umd/min.js"></script>
<script>
    let date = new Date("2010-09-20T00:00+0900")
    console.log(holiday_jp_dayjs.isHoliday(date)); // true; 敬老の日
</script>

In Node

npm install holiday-jp-dayjs
import { between } from "holiday-jp-dayjs";

const days = between(
    new Date('2010-09-14T00:00+0900'), 
    new Date('2010-09-21T00:00+0900'),
)
console.log(days[0].name) // 敬老の日

3. Motivation

Timezone Affected

The original implementation of @holiday-jp/holiday_jp is affected by timezone. When run on an environment in timezone except "Asia/Tokyo", output may be ambiguous 😵

The following simple code runs as expected in "Asia/Tokyo". But in other timezone, for example "UTC", the result is false because its local date-time is "2021-12-31T15:00:00+0000". What we want to know is whether the given datetime is holiday is Japan, not in UTC 🤣

import { isHoliday } from "@holiday-jp/holiday_jp"

let date = new Date("2022-01-01T00:00:00+0900")
isHoliday(date) // expected true, as "New Year's Day"

Fixed Timezone

In this library, all the date values are manipulated in "Asia/Tokyo" using Day.js, which is light and modern date-operation library 👍

4. Update

This library uses data file of all the holiday provided by @holiday-jp/holiday_jp. GithubAction workflow runs periodically and checks updates of dependencies including @holiday-jp/holiday_jp.

workflow file

  1. Check update of dependencies
  2. Publish PR if any update
  3. Build & Publish to npm when PR merged