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

date-fu

v0.4.2

Published

Utilities for working with JavaScript Dates. Plays nicely with TimezoneJS.

Downloads

4

Readme

Date-Fu

Utilities for working with JavaScript Dates. Plays nicely with TimezoneJS. Includes:

  • strftime – formats dates based on a string input.
  • add – increments a date the desired number of units.
  • diff – gets the time difference between two dates.

Syntax

strftime(dt, formatString);

Parameters

dt (Object/Date or Number) – The date to be formatted, JS Date or numeric timestamp.

formatString (String) – Indicates how the date is to be formatted.

Description

Formats a date or time according to a given format string – identical to the strftime function found in many scripting languages such as Perl, Ruby, or PHP.

Formattting

The format string may include the following specifiers:

  • %a -- Abbreviated weekday name (ex. Thu)
  • %A -- Full weekday name (ex. Thursday)
  • %b -- Abbreviated month name (ex. Nov)
  • %B -- Full month name (ex. November)
  • %c -- Appropriate date and time representation (ex. Thu Nov 03 13:10:35 2005)
  • %C -- Century number (the year divided by 100 and truncated to an integer, range 00 to 99), single digits are preceded by zero (ex. 20)
  • %d -- Day of month (range 01 to 31), single digits are preceded by zero (ex. 03)
  • %D -- Date as %m/%d/%y (ex. 11/03/05)
  • %e -- Day of the month as a decimal number (range ' 1' to '31') -- a single digit is preceded by a space (ex. ' 3')
  • %F -- Same as %Y-%m-%d
  • %h -- Same as %b (ex. Nov)
  • %H -- Hour as a decimal number using a 24-hour clock (range 00 to 23), single digits are preceded by zero (ex. 13)
  • %I -- Hour as a decimal number using a 12-hour clock (range 01 to 12), single digits are preceded by zero (ex. 01)
  • %j -- Day of the year as a decimal number (range 001 to 366) -- zero-padded to three digits (ex. 307)
  • %k -- Hour as a decimal number using a 24-hour clock (range ' 0' to '23'), single digits are preceded by a space (ex. '13')
  • %l -- Hour as a decimal number using a 12-hour clock (range ' 1' to '12'), single digits are preceded by a space (ex. ' 1')
  • %m -- Month as a decimal number (range 01 to 12), single digits are preceded by zero (ex. 11)
  • %M -- Minute as a decimal number (range 00 to 59), single digits are preceded by zero (ex. 10)
  • %n -- Linefeed character ('\n')
  • %p -- Either 'AM' or 'PM' according to the given time value (ex. PM)
  • %r -- Appropriate time representation in 12-hour clock format with %p (ex. 01:10:35 PM)
  • %R -- Time as %H:%M (ex. 13:10)
  • %S -- Second as a decimal number (range 00 to 59), single digits are preceded by zero (ex. 35)
  • %t -- Tab character ('\t')
  • %T -- Time as %H:%M:%S (ex. 13:10:35)
  • %u -- Weekday as a decimal number (range 1 to 7), with 1 representing Monday (ex. 4)
  • %w -- Weekday as a decimal number (range 0 to 6), with 0 representing Sunday (ex. 4)
  • %x -- Appropriate date representation without the time (ex. 11/03/05)
  • %X -- Appropriate time representation without the date (ex. 01:10:35)
  • %y -- Year as a decimal number without a century (range 00 to 99), single digits are preceded by zero (ex. 05)
  • %Y -- Year as a decimal number including the century (ex. 2005)
  • %% -- A literal percent character (ex. %)

Examples

var bd = new Date('12/27/1968');
strftime(bd, 'My birthdate was %A, %B %e, %Y.');
=> 'My birthdate was Friday, December 27, 1968.'

var dt = new Date('10/01/2112');
strftime(dt, 'I found a guitar in %B of %Y.');
=> 'I found a guitar in October of 2112.'

add

Syntax

someHash.add(someKey, value);

Parameters

dt (Object/Date or Number) – The date to be incremented/decremented.

interval (constant, see dateParts) – the unit (e.g., days, weeks, hours, minutes) of time that the date is to be incremented/decremented.

count (Number) – The number of the desired units to increment/decrement the date.

Description

Increments/decrements a date by some number of a specified unit of time (e.g., adds three weeks, subtracts eight hours).

Examples

var dateParts = dateParts;
// Add 10 years
var bd = new Date('12/27/1968');
bd = add(bd, dateParts.YEAR, 10);
=> Wed Dec 27 1978 00:00:00 GMT-0600 (CST)

// Subtract 2 hours
var dt = new Date(2112, 9, 1, 12, 45);
dt = add(dt, dateParts.HOUR, -2);
=> Sat Oct 01 2112 10:45:00 GMT-0500 (CDT)

diff

Syntax

diff(dtA, dtB, interval);

Parameters

dtA, dbB (Object/Date or Number) – The dates to be compared.

interval (constant, see dateParts) – the unit (e.g., days, weeks, hours, minutes) of time to use when comparing the two dates.

Description

Returns the time difference between two dates, measured in a specified unit of time (e.g., how many days between, how many hours between, how many weeks between).

Examples

var dateParts = dateParts;

// Number of months between these dates
var dt1 = new Date('01/01/2112');
var dt2 = new Date('10/01/2112');
var diff = diff(dt1, dt2, dateParts.MONTH);
=> 9

// Number of weekdays between these dates
var dt1 = new Date('09/11/2007');
var dt2 = new Date('09/28/2007');
var diff = diff(dt1, dt2, dateParts.WEEKDAY);
=> 13