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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@abidrahim/waqt

v1.0.2

Published

Parse, manipulate, retrieve and display date and time data with minimal javascript methods

Readme

Implement date-fns

Functions to implement using Date Object.

Get Date Time

now

It will give you the current datetime Example:

now();
// Wed Feb 13 2019 14:30:02 GMT+0530 (India Standard Time)

Day of Year

Gets the day of the year.

getDayOfYear(new Date());
// 44

Day of Week

Gets the day of the week.

getDay(new Date());
// 7

Week of Year

Gets the day of the week.

getWeek(new Date());
// 3 (Wednesday)

Days in Month

Gets the day of the week.

getDaysInMonth(new Date(2012, 1));
// => 29

Maximum of the given dates

Returns the minimum (most distant future) of the given date.

const array = [
  new Date(2017, 4, 13),
  new Date(2018, 2, 12),
  new Date(2016, 0, 10),
  new Date(2016, 0, 9)
];
min(array);
// => "2016-01-08T13:00:00.000Z"

Maximum of the given dates

Returns the maximum (most distant future) of the given date.

const array = [
  new Date(2017, 4, 13),
  new Date(2018, 2, 12),
  new Date(2016, 0, 10),
  new Date(2016, 0, 9)
];
max(array);
// => "2018-03-11T13:00:00.000Z"

Display

Format

Formats date to "MM/DD/YYYY"

format(new Date(2014, 1, 11), "MM/DD/YYYY");
//=> '02/11/2014'

Date Manipulation

Add Days

Add the specified number of days to the given date. Example:

addDays(new Date(), 7);
//Output:  Wed Feb 20 2019 14:30:02 GMT+0530 (India Standard Time)

Subtract Days

Subtract the specified number of days from the given date. Example:

subDays(new Date(), 5);
//Output:  Wed Feb 20 2019 14:30:02 GMT+0530 (India Standard Time)

End of Time

Return the end of a unit of time for the given date.

Example:

endOfDay(new Date());
// => "2018-09-09T13:59:59.999Z"

Difference

Get the unit of time between the given dates.

Example:

differenceInMilliseconds(new Date(2007, 0, 27), new Date(2007, 0, 29));
// => -172800000
differenceInDays(new Date(2007, 0, 27), new Date(2007, 0, 29));
// => -2

Is Before

Check if a date is before another date.

Example:

isBefore(new Date(2010, 9, 20), new Date(2010, 9, 21));
// => true

Is Same

Check if a date is the same as another date.

Example:

isSameDay(new Date(2010, 9, 20), new Date(2010, 9, 21));
// => false
isSameDay(new Date(2010, 9, 20), new Date(2010, 9, 20));
// => true
isSameMonth(new Date(2010, 9, 20), new Date(2010, 9, 21));
// => true

Is After

Check if a date is after another date.

Example:

isAfter(new Date(2010, 9, 20), new Date(2010, 9, 19));
// => true

Is Leap Year

Check if a year is a leap year.

Example:

isLeapYear(new Date(2000, 0, 1));
// => true

Is a Date

Check if a variable is a native js Date object.

Example:

isDate(new Date());
// => true