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

terminal-todo-list

v1.0.0

Published

Feature-rich CLI todo list with priorities, deadlines, tags, and filters

Readme

cli-todo-app

Feature-rich terminal todo list with priorities, deadlines, tags, and filters

Beautiful CLI task manager with color-coded priorities, progress bar, overdue alerts, and powerful filtering.

Node.js License Platform

Features

  • CRUD — добавление, редактирование, удаление задач
  • 🎯 Приоритеты — HIGH / MEDIUM / LOW с цветовой индикацией
  • 📅 Дедлайны — today, tomorrow, ДД.ММ.ГГГГ
  • 🏷️ Теги — группировка по категориям
  • 📊 Прогресс-бар — визуальный прогресс выполнения
  • 🔴 Просроченные — подсветка просроченных задач
  • 🔍 Фильтры — по статусу, приоритету, тегу, дедлайну, поиску
  • 💾 Хранение — данные сохраняются между сессиями
  • ↩️ Undo — возврат выполненных задач

Installation

npm install -g cli-todo-app

Without installation

npx cli-todo-app list

Usage

Add tasks

todo add "Сделать презентацию"
todo add "Срочный баг" --high --due today --tag work
todo add "Купить продукты" --low --tag home
todo add "Код-ревью" --medium --due tomorrow --tag work

List tasks

todo list                   # Все задачи
todo list --pending         # Только активные
todo list --done            # Только выполненные
todo list --high            # Высокий приоритет
todo list --overdue         # Просроченные
todo list --today           # На сегодня
todo list --tag work        # По тегу
todo list --search дизайн   # Поиск по тексту

Manage tasks

todo done 1 2 3             # Отметить выполненными
todo undo 1 2               # Вернуть в работу
todo edit 1 --text "Новое"  # Изменить текст
todo edit 1 --high          # Изменить приоритет
todo edit 1 --due tomorrow  # Изменить дедлайн
todo delete 4 5             # Удалить задачи
todo clear                  # Удалить все выполненные

Statistics

todo stats                  # Общая статистика
todo help                   # Справка

Priority Levels

| Level | Flag | Display | |-------|------|---------| | 🔴 HIGH | --high / -H | Красный бейдж | | 🟡 MEDIUM | --medium / -M | Жёлтый бейдж | | 🟢 LOW | --low / -L | Зелёный бейдж |

Due Dates

| Format | Example | |--------|---------| | today | --due today | | tomorrow | --due tomorrow | | DD.MM.YYYY | --due 15.04.2026 |

Tags

todo add "Фича" --tag work
todo add "Ремонт" --tag home
todo list --tag work

Example Session

$ todo add "Деплой на прод" --high --due today --tag devops
✅ Задача добавлена: #1

$ todo add "Написать документацию" --medium --due tomorrow --tag docs
✅ Задача добавлена: #2

$ todo list
 ═══ CLI Todo List ═══
  Прогресс: [░░░░░░░░░░░░░░░░░░░░] 0%
  Всего: 2  |  Выполнено: 0  |  В процессе: 2
  📅 Сегодня: 1

  🔴  #1  Деплой на прод      HIGH  🟡 СЕГОДНЯ: 09.04.2026  #devops
  ⬜  #2  Написать документацию MEDIUM  🟠 ЗАВТРА: 10.04.2026  #docs

$ todo done 1
✅ Отмечено 1 задач

Requirements

  • Node.js >= 14.0.0
  • Works on Windows, Linux, macOS

Data Storage

Tasks are stored in ~/.cli-todos.json (cross-platform).

License

MIT