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

everydate

v1.2.0

Published

A simple date recurrence tool

Downloads

61

Readme

Everydate

Build Status npm version

Everydate is a simple date recurrence tool. It allows you to calculate next days for a recurrence, match dates for it and get all recurring days between a start and end date.

Getting started

everydate can be installed with npm and required into a script.

import everydate from 'everydate'

Example

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days'
});

recur.next(3) // [2018-02-10, 2018-02-12, 2018-02-14]
recur.match('2018-02-12') // true
recur.match('2018-02-13') // false
recur.all() // [2018-02-10, 2018-02-12, 2018-02-14, 2018-02-16]
recur.isRecurring() // true

Usage

Both input for start and end days use date string in the format of YYYY-MM-DD This helps dismissing time from the results, which is not handled by this module, and enforces the idea that you can then use whatever date library you want for other tasks.

There is a date-fns dependency however, so you may as well use that, as it's awesome. ❤️

Creating an everydate object

Creating a recurrence object requires a start date, an array of units and a measure type.

start: string | Date, // default new Date()
end: string | Date, // default null
units: Array<number>, // default []
measure: enum // days, weeks, months, years, daysOfWeek, daysOfMonth, default null
returnDates: boolean // return an array of Dates instead of strings, default false.

For example, if you want a recurrence of every 3 days

const recur = everydate({
  start: '2018-02-10',
  units: [3],
  measure: 'days'
});

A recursion for every 2 AND 5 days

const recur = everydate({
  start: '2018-02-10',
  units: [2, 5],
  measure: 'days'
});

A recursion for every Tuesday

const recur = everydate({
  start: '2018-02-10',
  units: [2],
  measure: 'daysOfWeek'
});

A recursion for every Tuesday and Friday

const recur = everydate({
  start: '2018-02-10',
  units: [2, 5],
  measure: 'daysOfWeek'
});

A recursion for every 15th of the month

const recur = everydate({
  start: '2018-02-10', // if start date is before first day of recurrence it will not be outputted in the results.
  units: [15],
  measure: 'daysOfMonth'
});

Getting next dates

After creating the object you can get next days from it. This is the point of the module ¯_(ツ)_/¯

If an end date is provided next() will only give dates until the end date, even if a larger number is provided.

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days'
});

recur.next(3) // [2018-02-10, 2018-02-12, 2018-02-14]

Getting all dates

If both a start date and an end date are given, you can call all() to get all given.

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days'
});

recur.all() // [2018-02-10, 2018-02-12, 2018-02-14, 2018-02-16]

Matching dates

You can check if a given date matches your everydate object using match()

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days'
});

recur.match('2018-02-12') // true
recur.match('2018-02-13') // false

Getting and Setting values

After creating an everydate object you can get and set all props

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days'
});

recur.setStart('2018-02-12');
recur.setEnd('2018-05-10');
recur.setUnits([5]);
recur.setMeasure('weeks');

recur.getStart(); // '2018-02-12'
recur.getEnd(); // '2018-05-10'
recur.getUnits(); // [5]
recur.getMeasure(); // 'weeks'

Helper functions

You can check if the everydate object is recurring, i.e. it has a measure and a filled array of units.

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17'
});
recur.isRecurring() // false

Options

If you prefer to get an array of Dates instead of strings you can set returnDates to true. Keep in mind that dates have time information which this package ignores, but in some cases you may get unexpected results, for example if a recursion passes daylight savings dates you would get the correct date, but your time values would shift by an hour.

const recur = everydate({
  start: '2018-02-10',
  end: '2018-02-17',
  units: [2],
  measure: 'days',
  returnDates: true
});

Licence

MIT