DEPRECATED - Official Node.js library for Holiday API https://github.com/holidayapi/node-holidayapi
This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Find a file
2019-09-10 10:14:01 -05:00
.gitignore Initial commit 2016-08-08 23:55:29 -05:00
index.js allow for the key to be passed as a parameter 2019-06-01 13:54:16 -05:00
LICENSE Initial commit 2016-08-08 23:55:29 -05:00
package.json Added deprecation notices. 2019-09-10 10:14:01 -05:00
README.md Added deprecation notices. 2019-09-10 10:14:01 -05:00

This repository has moved to https://github.com/holidayapi/node-holidayapi

The NPM package has also been renamed from node-holidayapi to simply holidayapi

This repository has been archived.


node-holidayapi

Official Node.js library for Holiday API

Installation

npm install --save node-holidayapi

Usage

var HolidayAPI = require('node-holidayapi');
var hapi = new HolidayAPI('_YOUR_API_KEY_').v1;

var parameters = {
  // Required
  country: 'US',
  year:    2016,
  // Optional
  // month:    7,
  // day:      4,
  // previous: true,
  // upcoming: true,
  // public:   true,
  // pretty:   true,
};

hapi.holidays(parameters, function (err, data) {
  // Insert awesome code here...
});