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

onday

v2.4.53

Published

Get some historical event on the given date (day / month)

Downloads

75

Readme

onday

npm install size CI Tests Github Build npm downloads

Returns a random sentence about a historical event that happened on the given date ( day and month ).

Install

$ npm install --save onday

Usage

The Class Constructor accepts two numeric values: day and month For example:

let findOnThisDate = new onday(25, 12); //Christmas Day

Calling the method check() returns a Promise with the contents.

Each call to the check() method will return different content for the given date.

You can also pass a date argument: (day,month) to the check() method. For example: findOnThisDate.check(1,1) //Change to 1st January

API

Here we cover the most 'useful' methods

check([number, number[,true]])

Use this method to retrieve information for a given date, by passing (numeric day value, numeric month value). The third argument is a boolean and is only required if to retrieve mock text - this is here for testing purposes only, and will return text without connecting to the internet.

If no values are passed then the current date (day, month) will be used automatically.

Syntax

onday.check(15, 10); //15 October

Parameters

Optional     day value         [numeric]

Optional     month value     [number]

If not given, then the Class instance's constructor properties (day,month) values are used instead.

Returns

A Promise containing a sentence, about a historical event from the date parameters, or if not given then the Class instance properties.

Example 1

Using then().catch()

const onday = require("onday");

const day = 8;
const month = 10; //October

let randomDate = new onday(day, month);

randomDate1
  .check()
  .then((info) => {
    console.log(`on ${day}/${month} this happened: ${info}`);
  })
  .catch((error) => {
    console.error(`Error ${error}`);
  });
example Output
on 8/10 this happened: October 8th is the day in 1962 that Algeria joins the United Nations.

Example 2

Using an async / await function.

const onday = require("onday");

const fn = async () => {
  let contents = await new onday(25, 12).check();
  console.log(`contents: ${contents}`);
};
fn();
fn(); //can be called multiple times!
Example Output
contents: December 25th is the day in 1974 that Cyclone Tracy devastates Darwin, Northern Territory Australia.
contents: December 25th is the day in 1826 that the Eggnog Riot at the United States Military Academy concludes after beginning the previous evening.

getdate([number, number])

Use this method to retrieve a formatted return date. Pass optional parameters (numeric day value, numeric month value) to get the formatted date.

If no values are passed then the default current date (day, month) will be used automatically.

Errorhandling will return a rejected promise.

Syntax

onday.getdate(15, 10); // returns: '15th Oct'

Parameters

Optional     day value         [numeric]

Optional     month value     [number]

If not given, then the Class instance's constructor properties (day,month) values are used instead.

Returns

A Promise containing the formatted date as a String.

Example

Using then().catch()

const onday = require("onday");

const myDate = new onday();
myDate
  .getdate(8, 10)
  .then((val) => {
    console.log(`getdate = ${val}`);
  })
  .catch((e) => {
    console.error(`problem with the date: ${e}`);
  });

Example Output

getdate = 8th Oct