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

@mabaoguo/todo-cli

v1.0.1

Published

A terminal TODO task manager CLI tool

Readme

TODO CLI

一个现代化的终端任务管理命令行工具,采用蓝色主题设计。

功能特性

  • ✅ 添加、查看、完成、删除任务
  • 🎨 蓝色主题终端界面,美观现代
  • 📊 表格形式展示任务列表
  • 🏷️ 任务优先级管理(高/中/低)
  • 💾 本地 JSON 数据存储
  • 🔧 TypeScript 开发,类型安全

安装

全局安装(推荐)

npm install -g @mabaoguo/todo-cli
# 或
pnpm add -g @mabaoguo/todo-cli
# 或
yarn global add @mabaoguo/todo-cli

本地开发安装

git clone <repository-url>
cd todo-cli
pnpm install
pnpm build

使用方法

查看帮助

todo --help

添加任务

todo add "学习 TypeScript" --priority high
todo add "写文档" --priority medium
todo add "整理桌面" --priority low

查看任务列表

todo list

完成任务

todo done 1

删除任务

todo remove 2

清空所有任务

todo clear

命令选项

  • add <task> - 添加新任务
    • --priority <high|medium|low> - 设置优先级(默认:medium)
  • list - 显示所有任务
  • done <id> - 完成任务
  • remove <id> - 删除任务
  • clear - 清空所有任务

技术栈

  • 语言: TypeScript
  • 构建工具: tsdown
  • 命令行框架: Commander.js
  • 终端交互: @clack/prompts
  • 颜色输出: chalk
  • 表格显示: cli-table3

开发

# 安装依赖
pnpm install

# 构建项目
pnpm build

# 开发模式(监听文件变化)
pnpm dev

# 运行测试
pnpm start

许可证

MIT License