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 🙏

© 2026 – Pkg Stats / Ryan Hefner

d2dwin-reminder-cli

v2.0.2

Published

Manage day to day reminder(text/task) by CLI.

Readme

Day to day windows reminder cli

CLI for handling custom day to day reminder task/text by native notifications using Node.js. Toasters for Windows 8/10, or taskbar balloons for earlier Windows versions.

Installation

npm install -g d2dwin-reminder-cli

[!IMPORTANT] If you see an EACCES error when you try to install a package globally.

[!NOTE]

npm list --global --depth=0`

Used to display a clean list of all top-level, globally installed Node.js packages on your system. Please verify package.

Manual steps for set the installed package as auto executable.

  • GET Path : Use npm config get prefix Prints the path where global executable binaries are linked.

  • BATCH file : Open notepad and copy and paste blow code into your empty notepad window and name your file and end it with .bat, save it.

    @echo off
    call "[GET Path]\dn.cmd"
  • VB Script : Open notepad and copy and paste blow code into your empty notepad window and name your file and end it with .vbs, save it.

    CreateObject("Wscript.Shell").Run "cmd /c [BATCH File path]", 0, False
  • SET [VB Script] file as startup applications : Configure Startup applications in Windows follow the steps & configure [VB Script] file.

[!CAUTION] To finish your steps, restart your PC by saving your open work.

Quick Start

dn --help

For all available options.

dn --nls

For view your reminder item list.

dn --ne

For enable all reminder.

dn --nd

For disable all reminder.

dn --nad

For add new reminder item(s). (each item separate by '|||').

[!NOTE] To prevent internal double quotes from breaking a string, you must wrap the text inside single quotes (' ').

[ Text{HH:MM{'A' | 'T' ]

  • 'A' | 'a' : To launch and run an executable command(s) using the Windows Command Prompt
  • 'T' | 't' : Notification reminder

Example:

  1. Notification reminder :
dn --nad "Todo1{01:00{t|||Todo2{02:00"
  1. The Windows Command Prompt reminder : Launch and run an executable command(s)
dn --nad "ipconfig /all & ping google.com & netstat -an{00:30{a|||(ipconfig && ping google.com) || echo 'Network setup failed'{02:00{a"

dn --nus

For Update reminder item(s) status(Active | Done). (each item separate by '|||')

[!TIP] First disable reminder, update status then enable reminder.

[ Item Index{Updated Status ]

  • Item index check dn --nls option.

Example:

dn --nus "1{Done|||2{Done|||3{Active"

dn --nud

For Update reminder item(s) duration(HH:MM). (each item separate by '|||')

[!TIP] First disable reminder, update duration then enable reminder.

[ Item Index{HH:MM ]

  • Item index check dn --nls option.

Example:

dn --nud "1{00:30|||2{02:40|||3{04:09"

dn --nut

For Update reminder item(s) type( 'A' | 'T' ). (each item separate by '|||')

[!TIP] First disable reminder, update type then enable reminder.

[ Item index{type( 'A' | 'T' ) ]

  • Item index check dn --nls option.
  • 'A' | 'a' : To launch and run an executable command(s) using the Windows Command Prompt
  • 'T' | 't' : Notification reminder

Example:

dn --nut "1{A|||2{T|||3{T"

dn --nui [LOCAL SYSTEM IMAGE PATH]

Update notification icon image.

[!TIP] First disable reminder, update icon image then enable reminder.

[!IMPORTANT] Allowed Extensions: '.jpg', '.jpeg', '.png'