Official Node.js library for Holiday API https://holidayapi.com
Find a file
Josh Sherman 2e44b14a37 fix(dependencies): routine security updates
Updated dependencies and resolved the recent security vulnerabilities.
Also added linting to the CI pipeline and split out testing into two
scripts to make it easier to run tests locally.
2020-03-21 13:27:52 -05:00
dist feat: filter out countries without public holidays 2020-03-03 22:39:18 -06:00
src feat: filter out countries without public holidays 2020-03-03 22:39:18 -06:00
tests feat: filter out countries without public holidays 2020-03-03 22:39:18 -06:00
.eslintrc.json feat: pull country or language by code. 2020-02-11 19:06:09 -06:00
.gitignore Merge pull request #6 from holidayapi/development-v2 2019-09-09 22:30:30 -05:00
.npmignore Merge pull request #6 from holidayapi/development-v2 2019-09-09 22:30:30 -05:00
.travis.yml fix(dependencies): routine security updates 2020-03-21 13:27:52 -05:00
jest.config.js Merge pull request #6 from holidayapi/development-v2 2019-09-09 22:30:30 -05:00
LICENSE feat: pull country or language by code. 2020-02-11 19:06:09 -06:00
package-lock.json fix(dependencies): routine security updates 2020-03-21 13:27:52 -05:00
package.json fix(dependencies): routine security updates 2020-03-21 13:27:52 -05:00
README.md feat: filter out countries without public holidays 2020-03-03 22:39:18 -06:00
tsconfig.json Merge pull request #6 from holidayapi/development-v2 2019-09-09 22:30:30 -05:00

Holiday API Node.js Library

License Node Version Build Status Coverage Status

Official Node.js library for Holiday API providing quick and easy access to holiday information from applications written in server-side JavaScript.

Migrating from 2.x

In an attempt to stay current with both our development and production dependencies, the decision was made to drop testing and advertised compatibility with Node.js versions that are outside of their maintenance window.

For the 3.x release, testing for Node.js 13.x was added while testing for Node.js 7.x, 9.x and 11.x was dropped. Even though these older versions may still continue to work, they become harder to test against as our dependencies improve and drop support for those versions.

In the future, when compatibility changes, we will increment the major version number of the release as well as document the additions and deprecations in the release notes.

Migrating from 1.x

Please note, version 2.x of this library is a full rewrite of the 1.x series in TypeScript. The interfacing to the library has been simplified and existing applications upgrading to 2.x will need to be updated.

Version 1.x Syntax (Old) Version 2.x Syntax (New)
const HolidayAPI = require('node-holidayapi'); import { HolidayAPI } from 'holidayapi';
const holidayApi = new HolidayAPI(key).v1; const holidayApi = new HolidayAPI({ key });
holidayApi.holidays(params, (err, data) => {}); holidayApi.holidays(params).then((data) => {});

Version 1.x of the library can still be found here.

Documentation

Full documentation of the Holiday API endpoints is available here.

Installation

# NPM
npm install --save holidayapi

# Yarn
yarn add holidayapi

Usage

import { HolidayAPI } from 'holidayapi';

const key = 'Insert your API key here';
const holidayApi = new HolidayAPI({ key });

// Fetch supported countries and subdivisions
holidayApi.countries()
  .then((countries) => { console.log(countries); })
  .catch((err) => { console.error(err); });

// Fetch supported languages
holidayApi.languages()
  .then((languages) => { console.log(languages); })
  .catch((err) => { console.error(err); });

// Fetch holidays with minimum parameters
holidayApi.holidays({ country: 'US', year: 2019 })
  .then((holidays) => { console.log(holidays); })
  .catch((err) => { console.error(err); });

// Async? Await? No problem!
(async () => {
  // Fetch supported countries and subdivisions
  const countries = await holidayApi.countries();

  // Fetch supported languages
  const languages = await holidayApi.languages();

  // Fetch holidays with minimum parameters
  const holidays = await holidayApi.holidays({
    country: 'US',
    year: 2019,
  });
})();

Examples

Countries

Fetch all supported countries

holidayApi.countries();

Fetch only countries with public holidays

holidayApi.countries({
  public: true,
});

Fetch a supported country by code

holidayApi.countries({
  country: 'NO',
});

Search for countries by code or name

holidayApi.countries({
  search: 'united',
});

Languages

Fetch all supported languages

holidayApi.languages();

Fetch a supported language by code

holidayApi.language({
  language: 'es',
});

Search for languages by code or name

holidayApi.language({
  search: 'Chinese',
});

Holidays

Fetch holidays for a specific year

holidayApi.holidays({
  country: 'US',
  year: 2019,
});

Fetch holidays for a specific month

holidayApi.holidays({
  country: 'US',
  year: 2019,
  month: 7,
});

Fetch holidays for a specific day

holidayApi.holidays({
  country: 'US',
  year: 2019,
  month: 7,
  day: 4,
});

Fetch upcoming holidays based on a specific date

holidayApi.holidays({
  country: 'US',
  year: 2019,
  month: 7,
  day: 4,
  upcoming: true,
});

Fetch previous holidays based on a specific date

holidayApi.holidays({
  country: 'US',
  year: 2019,
  month: 7,
  day: 4,
  previous: true,
});

Fetch only public holidays

holidayApi.holidays({
  country: 'US',
  year: 2019,
  public: true,
});

Fetch holidays for a specific subdivision

holidayApi.holidays({
  country: 'GB-ENG',
  year: 2019,
});

Include subdivision holidays with countrywide holidays

holidayApi.holidays({
  country: 'US',
  year: 2019,
  subdivisions: true,
});

Search for a holiday by name

holidayApi.holidays({
  country: 'US',
  year: 2019,
  search: 'New Year',
});

Translate holidays to another language

holidayApi.holidays({
  country: 'US',
  year: 2019,
  language: 'zh', // Chinese (Simplified)
});

Fetch holidays for multiple countries

holidayApi.holidays({
  country: 'US,GB,NZ',
  year: 2019,
});

holidayApi.holidays({
  country: ['US', 'GB', 'NZ'],
  year: 2019,
});