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

@mudassirabrar/keepnotes

v1.0.1

Published

A simple terminal-based todo & note-keeping CLI app

Readme

keepnotes 📋

A fast, simple terminal-based todo & note-keeping CLI app. Runs directly from your terminal — no browser, no GUI.


Installation

From npm (once published)

npm install -g @mudassirabrar/keepnotes

From GitHub (for development)

git clone https://github.com/YOUR_USERNAME/keepnotes.git
cd keepnotes
npm install
npm link       # makes "keepnotes" available as a global command

Commands

Add a task

keepnotes add "Buy milk"
keepnotes add "Fix the login bug" --priority high
keepnotes add "Read that article" -p low

Priority levels: high | normal (default) | low

List tasks

keepnotes list          # or: keepnotes ls
keepnotes list --pending   # show only incomplete tasks
keepnotes list --done      # show only completed tasks

Mark as done

keepnotes done 2        # mark task #2 (by list position)
keepnotes d 2           # shorthand alias

Mark as pending again

keepnotes undone 1
keepnotes u 1           # shorthand alias

Delete a task

keepnotes delete 3
keepnotes del 3         # shorthand alias

Clear completed tasks

keepnotes clear         # removes all completed tasks
keepnotes clear --all   # removes EVERY task (use carefully!)

Quick demo

$ keepnotes add "Write the README" -p high
✔  Task added: Write the README [HIGH]

$ keepnotes add "Push to GitHub"
✔  Task added: Push to GitHub

$ keepnotes list

██╗  ██╗███████╗███████╗██████╗ ███╗   ██╗ ██████╗ ████████╗███████╗███████╗
██║ ██╔╝██╔════╝██╔════╝██╔══██╗████╗  ██║██╔═══██╗╚══██╔══╝██╔════╝██╔════╝
█████╔╝ █████╗  █████╗  ██████╔╝██╔██╗ ██║██║   ██║   ██║   █████╗  ███████╗
██╔═██╗ ██╔══╝  ██╔══╝  ██╔═══╝ ██║╚██╗██║██║   ██║   ██║   ██╔══╝  ╚════██║
██║  ██╗███████╗███████╗██║     ██║ ╚████║╚██████╔╝   ██║   ███████╗███████║
╚═╝  ╚═╝╚══════╝╚══════╝╚═╝     ╚═╝  ╚═══╝ ╚═════╝    ╚═╝   ╚══════╝╚══════╝

  📋  keepnotes — your tasks (0/2 completed)

╭───┬─────────┬──────────┬──────────────────┬───────────────╮
│ # │ Status  │ Priority │ Task             │      ID       │
├───┼─────────┼──────────┼──────────────────┼───────────────┤
│ 1 │ Pending │   HIGH   │ Write the README │ 1729381203492 │
│ 2 │ Pending │  NORMAL  │ Push to GitHub   │ 1729381203493 │
╰───┴─────────┴──────────┴──────────────────┴───────────────╯

$ keepnotes done 1
✔  Marked done: Write the README

$ keepnotes list

Data storage

All tasks are saved locally in ~/.keepnotes.json on your machine. Nothing is sent anywhere.


Publishing to npm

  1. Create an account at npmjs.com
  2. In the project folder:
npm login
npm publish --access=public
  1. Anyone can now install it with npm install -g @mudassirabrar/keepnotes

Project structure

keepnotes/
├── cli.js          ← entry point, defines all commands
├── src/
│   ├── add.js      ← add command logic
│   ├── list.js     ← list command logic
│   ├── actions.js  ← done, undone, delete, clear
│   └── storage.js  ← reads/writes ~/.keepnotes.json
└── package.json