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

@omericin/todo-cli

v1.1.2

Published

A high performance, minimalist todo cli

Readme

📝 Todo CLI (@omericin/todo-cli)

npm version license

A high-performance, minimalist, and Zero-UI Todo CLI tailored specifically for macOS. Designed for maximum developer productivity with zero context switching.

You execute commands, get a quick terminal output, and the program exits immediately. No persistent terminal UIs to get stuck in! 🚀


✨ Features

  • ⚡ Blazing Fast: Bundled into a single ESM file, it executes and quits instantly.
  • 📁 Multi-tab / Folder Support: Organize your tasks into different contexts (e.g., work, home, shop). Switch between them instantly.
  • 🎨 Nerd Font Support: First-class, beautiful iconography if you have a Nerd Font installed (e.g., 󰄰, 󰄬, 󰈸). Elegantly falls back to clean ASCII if missing.
  • 📝 Native Editor Integration: Need to write a complex task? Easily drop into your preferred system editor (like vim or nano) by running todo edit <id>.
  • 💾 Local Persistence: Safely stores your tasks locally in your home directory ~/.my-todo-list.json. Your last active tab is automatically remembered!

📦 Installation

To install globally via npm:

npm install -g @omericin/todo-cli

💡 Pro Tip for the Best Experience:
This CLI heavily relies on beautiful iconography. We highly recommend installing and setting your terminal font to JetBrains Mono Nerd Font to render the checkmarks (󰄰, 󰄬, 󰈸) perfectly! If your terminal does not use a Nerd Font, it will gracefully fall back to generic ASCII characters like [x] and ( ).


🚀 Usage

The syntax is just todo [command]. Running todo alone will default to listing your tasks.

todo list (or just todo)

Displays all your current tasks in a beautifully formatted, non-bordered list.

todo list
# 1. 󰄰 Read the new API docs
# 2. 󰈸 Fix production bug

todo add "<task>"

Quickly adds a new task.

todo add "Buy milk"
# Task added: "Buy milk"

# You can also add high priority tasks:
todo add "Call the client" --high

todo done <id>

Marks the task with the specified ID as completed.

todo done 1
# Task 1 marked as completed.

todo edit <id>

Opens the specific task in your system's default $EDITOR (falls back to nano). Great for correcting typos or adding longer task descriptions without dealing with CLI quotes.

todo edit 1
# (Opens your editor. Just save and exit when done!)

todo delete <id> (aliases: rm, remove, del)

Removes the specified task entirely from your list.

todo delete 2
# Or using aliases:
todo rm 2
todo del 2
# Task 2 removed: "Fix production bug"

todo tab [name]

Switch between different task lists (folders/tabs). If no name is provided, it simply lists the current tab's tasks and shows all available tabs. The CLI remembers your last active tab.

todo tab "work"
# Switched to tab: work
#   default   [ work ]
# ──────────────────────────────────────────────────
# No tasks in 'work'. Use `todo add <task>` to create one.

todo tab-rm <name>

Removes a specific tab and all of its tasks permanently.

todo tab-rm "work"
# Tab removed: work

todo tab-rename <oldName> <newName> (aliases: tab-mv, tab-edit)

Renames an existing tab.

todo tab-rename "work" "office"
# Or using aliases:
todo tab-mv "work" "office"
# Tab renamed from 'work' to 'office'

⚙️ Configuration

The configuration is stored securely at ~/.my-todo-list.json. Under the hood, if you ever browse the config, you have access to a useNerdFonts: boolean property which you can disable if you prefer raw ASCII characters like ( ) and [x].

📄 License

ISC