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

cli-todo-tool

v1.1.1

Published

CLI todo tool that helps you manage your daily tasks

Readme

Description

CLI todo tool that helps you manage your daily tasks

Installation

npm install -g cli-todo-tool

Usage

Keyword: todo <command> <arguments>

Commands:
* create-todo                                         Creates a new todo with name, description, severity and due date
     -n, --name                                       [required]
     -d, --desc, --describe, --description            [required]
     -s, --sev, --severity                            [required] [choices: "low" | "medium" | "high"]
     --dd, --due, --dueDate                           [required] [format: dd/mm/yyyy]

* complete-todo                                       Marks the given todo as completed
     -n, -t, --name, --todoName                       [required]

* cancel-todo                                         Marks the given todo as canceled
     -n, -t, --name, --todoName                       [required]

* update-severity                                     Updates the severity of the given todo
     -n, -t, --name, --todoName                       [required]
     -s, --sev, --severity                            [required] [choices: "low" | "medium" | "high"]

* update-due-date                                     Updates the due date of the given todo
     -n, -t, --name, --todoName                       [required]
     --dd, --due, --dueDate                           [required] [format: dd/mm/yyyy]

* delete-todo                                         Deletes the given todo
     -n, -t, --name, --todoName                       [required]

* group-todo                                          Adds the given todo to a given group
     -n, --todo, --todoName                           [required]
     -n, --group, --groupName                         [required]

* create-group                                        Creates a new group with the given name
     -n, -g, --name, --groupName                      [required]

* complete-group                                      Marks all the todos from the given group as completed
     -n, -g, --name, --groupName                      [required]

* cancel-group                                        Marks all the todos from the given group as canceled
     -n, -g, --name, --groupName                      [required]

* delete-group                                        Deletes all the todos from the given group
     -n, -g, --name, --groupName                      [required]

* create-bulk                                         Uploads all the data from the .json file in the todo list
     -p, --path                                       [required]

* list [option]                                       Lists all or filtered todos
     -t, --todo, --todoName                           [optional] [string]
     -g, --group, --groupName                         [optional] [string]
     -s, --sev, --severity                            [optional] [choices: "low" | "medium" | "high"]
     -b, --before, --beforeDate, --beforeDue          [optional] [format: dd/mm/yyyy]
     -a, --after, --afterDate, --afterDue             [optional] [format: dd/mm/yyyy]
     --compl, --completed                             [optional] [boolean]
     --canc, --canceled                               [optional] [boolean]

* start-server                                        Http server starts listening on port 8000

Bulk

A valid bulk file has to be a JSON format with the following data hierarchy:

{
   "todos": Todo[],
   "groups": string[]
}

____________________________________________

 type Severity = "low" | "medium" | "high";

 interface Todo {
  name: string;
  desc: string;
  sev: Severity;
  dueDate: number;
  completed: boolean;
  canceled: boolean;
  group?: string;
}

Server

Exposes the same functionalities as the CLI commands. Listens on port 8000.

| Request | Name | Body | Query Params | | :------ | :--------------- | :--------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | GET | /list | N / A | completed [boolean], canceled [boolean], severity [string] [choices: "low", "medium", "high"], before [string] [dd/mm/yyy], after [string] [dd/mm/yyyy], groupName [string], todoName [string] | | POST | /create-todo | name [string], desc [string], sev [string] [choices: "low", "medium", "high"], dueDate [string] [dd/mm/yyyy] | N / A | | POST | /create-group | name [string] | N / A | | PUT | /complete-todo | name [string] | N / A | | PUT | /cancel-todo | name [string] | N / A | | PUT | /update-severity | todoName [string], severity[string] [choices: "low", "medium", "high"] | N / A | | PUT | /update-due-date | todoName [string], newDueDate[string] [dd/mm/yyyy] | N / A | | PUT | /group-todo | todoName [string], groupName[string] | N / A | | PUT | /complete-group | name [string] | N / A | | PUT | /cancel-group | name [string] | N / A | | DELETE | /delete-todo | N / A | name [string] | | DELETE | /delete-group | N / A | name [string] |