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

recurring-date

v0.0.3

Published

Generate a list of dates that meet a given schedule

Downloads

26

Readme

New Note:

I've further forked this to convert to a Node.js friendly library (will still work in the browser using the Browserified version in the dist directory)

NOTE:

I wanted a version of this script without the Prototype dependency, so I forked it.

The original can be found here: https://github.com/mooman/recurring_dates

JavaScript library to generate recurring dates.

For example:

Every 2 weeks on Monday, Wednesday, and Friday starting today for 5 occurrences
Every month on the last Sunday starting on 02/10/09 until 03/30/10

This library will generate a list of dates for those patterns.

Please see demo here:
http://evlapix.github.com/recurring-date/demo.html

REQUIREMENTS

Datejs - http://www.datejs.com/
(Distributed with this is the SVN version from 03/29/2010. Please visit their site also.)

USAGE

var r = new RecurringDate(pattern);
alert(r.describe());
dates = r.generate();
if (r.contains('03/28/10')) alert('in pattern!');

API

Class RecurringDate (pattern [, date_format])

where pattern is a JSON object with the following options:

  • start: start date. date. required.
  • every: interval magnitude (every XXX weeks...). integer. required.
  • unit: valid values are 'd', 'w', 'm', 'y' for days, weeks, months, and years respectively. probably required.
  • end_condition: how should the recurrence be terminated. valid values are 'until' and 'for'. 'until' should be a date. 'for' should be an integer (for N occurrences). required.
  • until: if end_condition is 'until', pass the date here.
  • rfor: if end_condition is 'for', pass an integer here.
  • nth: valid values are 'first', 'second', 'third', 'forth', and 'last'. see 'occurrence_of' option. to be used with 'm' unit option.
  • occurrence_of: valid values are 0-6, corresponding to the days of the week. in conjuction with 'nth' option, specifies nth day of the month (last Sunday of the month). to be used with 'm' unit option.
  • days: to be used with 'w' unit option. an array of integers representing day of the week (0-6). eg. Every 2 weeks on Tuesday (2) and Thursday (4), pass [2,4] as the value.

ex. { start: Date.today(), every: 2, unit: 'w', end_condition: 'for', rfor: 5, days: [1,3,5] } generates: Every 2 weeks on Monday, Wednesday, and Friday for 5 occurrences starting today

date_format is optional, please see Datejs for valid formats.


String describe ()

Tries to describe the supplied pattern in English.


Boolean contains (date)

Determines whether "date" is in the recurrence pattern. This calls generate(), if it hasn't already been generated, otherwise, it will use the dates generated from the last time generate() was called. Returns true if "date" is in the pattern. "date" can be either a string or a Date object, but please make sure the time portion is all balls (00:00:00).

Note that this only check if "date" is contained within the pattern's starting and ending points. Next version will support indefinite ending date and throwaway dates generation, instead of storing them all in an array.


Date[] generate ([limit])

Generate the dates based on supplied pattern. Returns array of Date objects. Optional argument limit puts an upper limit on how many dates to generate (for preview or to prevent some memory leak).

TODO

  • Indefinite ending date (seems to be working if occurences == 0)
  • Throwaway date generation (not store in array, but just output it)

COMMENTS

Please feel free fork and improve, submit bug reports, suggestions, comments. email: janechii AT gmail.

LICENSE

Released under MIT License.