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

isdayoff-ts

v2.4.0

Published

[![NPM Version](https://img.shields.io/npm/v/isdayoff-ts.svg?style=flat-square)](https://www.npmjs.com/package/isdayoff-ts) [![NPM Downloads](https://img.shields.io/npm/dt/isdayoff-ts.svg?style=flat-square)](https://www.npmjs.com/package/isdayoff-ts)

Downloads

1,092

Readme

idayoff-ts

NPM Version NPM Downloads

isdayoff-ts is a TypeScript fork and improvement of isdayoff, an API wrapper for isdayoff.ru.

  • zero dependencies
  • gets day-off status for today, tomorrow or any day
  • gets day-off status for any month, year or an arbitrary time period no longer than 366 days
  • checks if any year is a leap year

Requirements

Node.js v18 and higher

Installation

npm install isdayoff-ts --save

Usage

Basic functions

IsDayOff api calls for dates return an instance of IsDayOffValue:

IsDayOffValue.bool() returns:

  • true for non-business days and holidays
  • false for other values

IsDayOffValue.value() returns:

  • 0 for business days
  • 1 for non-business days
  • 2 for short days when using { pre: true }
  • 4 for covid-era business days with { covid: true }
  • 8 for holidays when using { holidays: true }

Custom api provider

Your custom api shoud have following endpoints:

  • /today - no params
  • /tomorrow - no params
  • /api/getdata
    • year YYYY or YY
    • month MM
    • day DD
    • date1 & date2 YYYYMMDD
    • other api options (see ApiOptions type)
    • boolean options should be numeric
  • /api/isleap
    • year YYYY or YY
import isDayOff from "isdayoff-ts";

await isDayOff
  .setUrl("https://your.api.url") 
  .today() // ..etc

Today

import isDayOff from "isdayoff-ts";

/** returns value for today */
isDayOff
  .today()
  .then((
    res // IsDayOffDay object
    ) => {
    const bool = res.bool(); // gets IsDayOffValue as boolean: true for days off and holidays, otherwise false;
    const val = res.value(); // gets IsDayOffValue from IsDayOffDay object;

    console.log(`${date} is a ${bool ? "non-" : ""}working day.`);

  })
  .catch((err) => console.log(err.message));

Tomorrow

import isDayOff from "isdayoff-ts";

/** returns value for tomorrow */
isDayOff
  .tomorrow()
  .then((res) =>
    console.log(`${date} is a ${res.bool() ? "non-" : ""}working day.`)
  )
  .catch((err) => console.log(err.message));

Any date

import isDayOff from "isdayoff-ts";

/** returns false if September 10 is a business day or true if it's not */
const date = new Date("2020-09-10");
isDayOff
  .day(date)
  .then((res) =>
    console.log(`${date} is a ${res.bool() ? "non-" : ""}working day.`)
  )
  .catch((err) => console.log(err.message));

Month

import isDayOff from "isdayoff-ts";

/** returns an array of IsDayOffDay objects for September 2020 */
isDayOff
  .month(new Date("2020-09-01"))
  .then((res) => {
    res.forEach((v, i) => {
      console.log(
        `${i + 1}.${date.getMonth() + 1}.${date.getFullYear()} is a ${v.bool() ? "non-" : ""}working day.`
      );
    });
  })
  .catch((err) => console.log(err.message));

Year

import isDayOff from "isdayoff-ts";

// returns an array of IsDayOffDay objects for 2021 year
isDayOff
  .year(new Date(2021))
  .then((res) => {
    res.forEach((v, i) => {
      console.log(
        `Day ${i + 1} in year ${date.getFullYear()} is a ${v.bool() ? "non-" : ""}working day.`
      );
    });
  })
  .catch((err) => console.log(err.message));

Interval

import isDayOff from "isdayoff-ts";

// returns an array of IsDayOffDay objects for an interval
isDayOff
  .interval(new Date("2020-09-10"), new Date("2020-09-15"))
  .then((res) =>
    res.forEach((v, i) => {
      console.log(
        `Day ${i + 1} in month ${date.getMonth() + 1} of year ${date.getFullYear()} is a ${v.bool() ? "non-" : ""}working day.`
      );
    })
  )
  .catch((err) => console.log(err.message));

Is Leap Year

import isDayOff from "isdayoff-ts";

// returns is year a leap year or not
const leapDate = new Date("2020-09-10");
isDayOff
  .isLeapYear(leapDate)
  .then((res) =>
    console.log(
      `${leapDate.getFullYear()} is ${res ? "not " : ""}a leap year")`
    )
  )
  .catch((err) => console.log(err.message));

License

MIT