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

monthly-reminder

v1.0.4

Published

A reminder which sets off only on weekdays!

Downloads

3

Readme

Monthly Reminders

Set a recurring reminder on a specific day of the month. If the date falls on a weekend, the alarm (actually it's an email 😅) will go off on the next weekday (or the previous weekday if you choose so).

Table of Contents

Installation

You can install the package from NPM.

npm install --global monthly-reminder

After installing you need to add an entry to your crontab that will execute monthly-reminder daily. And to do that, we need to know the absolute path of monthly-reminder.

$> which monthly-reminder
/usr/bin/monthly-reminder
$> ls -l /usr/bin/monthly-reminder
lrwxrwxrwx 1 root root 56 Mar 22 10:48 /usr/bin/monthly-reminder -> ../lib/node_modules/monthly-reminder/monthly-reminder.js

Now we have all the information we need. Run crontab -e and schedule a daily job:

$> crontab -e
# Make sure that you are setting the hour in your server's timezone.
# You can choose a different hour to receive the emails but the program must run daily.
0 9 * * * /usr/bin/monthly-reminder exec

Configuration

You need to create a config.json in the monthly-reminder directory. We found that directory in the previous step: /usr/lib/node_modules/monthly-reminder

Let's change the directory:

$> cd /usr/lib/node_modules/monthly-reminder

There is an example config that you can copy and derive. config.json content should be like this:

{
  "nodemailer": {
    "host": "smtp.example.com",
    "port": 465,
    "secure": true,
    "auth": {
      "user": "username",
      "pass": "password"
    }
  },
  "defaultRecipient": "[email protected]"
}

monthly-reminder uses Nodemailer to send emails. The nodemailer object in the config is passed to createTransport of Nodemailer without modification. You may need additional settings to send emails from your email provider. You can find all available configuration keys in Nodemailer documentation.

Usage

All available commands are listed in the general help section:

$> monthly-reminder -h

Adding reminders

Set a reminder by running this command:

$> monthly-reminder add --name "Pay the Bills" --date 19 --recipient [email protected]

Now the reminder is set. You will be reminded to pay your bills on 19th of each month (or the next business day where 19 is a weekend).

There are a couple of other settings and customizations that you can learn more about by visiting the help section.

$> monthly-reminder add -h

Listing reminders

You can see a list of your reminders by running:

$> monthly-reminder list

Deleting reminders

The command below will first list the reminders and then prompt you to choose which one(s) to delete. You can delete multiple reminders by separating them with commas.

$> monthly-reminder delete

License

GNU General Public License v3.0 or later.

See COPYING to see the full text.