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

an.hour.ago

v0.3.0

Published

DSL for expressing and comparing dates and times

Downloads

6

Readme

an.hour.ago

an.hour.ago is a small utility which enables wonderfully expressive date and time manipulation in JavaScript.

Before we proceed, let me be clear that if supporting Internet Explorer is a requirement, you'd best turn back now. If, on the other hand, you're writing server-side JavaScript (or CoffeeScript) and desire an elegant means of expressing relative dates and times, read on!

Let's start with a simple example...

# CoffeeScript                                  # JavaScript
3.days.ago                                      # 3..days.ago

This produces a Date instance representing 72 hours before the present. Neat. What about the future?

1.minute.from_now                               # 1..minute.from_now

Easy! Note the use of minute rather than minutes. The two are synonymous; singular and plural properties exist for each of the supported units.

Decimals? You betcha:

1.5.hours.ago                                   # 1.5.hours.ago

In fact, the JavaScript is identical to the CoffeeScript in this case as the awkward double dot is not required.

What about dates relative to other points in time?

tomorrow  = 1.day.from_now                      # var tomorrow  = 1..day.from_now
halloween = new Date '31 October 2011'          # var halloween = new Date('31 October 2011')
christmas = new Date '25 December 2011'         # var christmas = new Date('25 December 2011')
                                                #
1.week.from tomorrow                            # 1..week.from(tomorrow)
                                                #
2.days.after halloween                          # 2..days.after(halloween)
                                                #
1.week.before christmas                         # 1..week.before(christmas)

from and after are synonymous; use whichever reads better.

This is pleasing, you may be thinking, but I'd never say “one week from tomorrow” – it sounds a bit stiff.

Well, if you must...

a = an = 1                                      # var a = 1, an = 1
                                                #
a.week.from tomorrow                            # a.week.from(tomorrow)
                                                #
a.fortnight.from_now                            # a.fortnight.from_now
                                                #
an.hour.ago                                     # an.hour.ago

Oh, and I should mention, you can add NaturalDate instances using the and method:

an.hour.and(58.minutes).from_now                # an.hour.and(58..minutes).from_now
                                                #
11.hours.and(36.minutes).and(9.seconds).ago     # 11..hours.and(36..minutes).and(9..seconds).ago

Can you help me with date comparison? To determine whether an event occurred more than a week ago I have to ask whether its numeric representation is less than that of "a week ago". It makes my head hurt.

Perhaps you find this more natural?

event_occurred.more_than(a.week).ago

A practical example:

user_registered = db.get(id).registration_date

$('#tips').show() if user_registered.less_than(15.minutes).ago

before/after can follow less_than/more_than:

apply_late_fee() if costume_returned.more_than(2.days).after halloween

There's also an either_side_of method which does what it says on the tin:

unfortunate = birthday.less_than(3.days).either_side_of christmas

That just about covers it.

Running the test suite

make setup
make test

One last thing...

To be clear, an.hour.ago fiddles with Date.prototype and Number.prototype. Two properties are added to Date.prototype:

  • less_than
  • more_than

The following properties are added to Number.prototype:

  • day
  • days
  • hour
  • hours
  • millisecond
  • milliseconds
  • minute
  • minutes
  • second
  • seconds
  • week
  • weeks

Each of these properties has a "getter" which returns a NaturalDate object. The rest of the methods (before, after/from, and and) are attached to NaturalDate.prototype (which is not exposed).