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 🙏

© 2025 – Pkg Stats / Ryan Hefner

zap-tcm

v4.0.3

Published

✅ If you want to know what zap is, just think of git but for your todos

Readme

⚡ Zap TCM

Zap TCM (Zap Todo Control Manager) is a blazing-fast, Git-inspired CLI tool for managing todos like code.
Create branches for different projects, switch between them, and keep your workflow lightning clean ⚡

🚀 Features

  • 🧠 Git-like workflow — Use familiar commands like zap add, zap branch, zap switch etc.
  • 🗂️ Branch-based todo lists — Each branch acts as a separate todo list
  • 💾 Persistent storage — Todos are locally stored across sessions in .zap repository
  • 🔥 Minimal & intuitive — No setup needed, just start zapping tasks

🧩 Example Usage

# Initialize zap in your project
zap init

# Add a new todo
zap add "Finish the README file"

# List all todos
zap list

# Mark a todo as done
zap complete 1

# Create a new branch (todo list)
zap branch work

# Switch to another branch
zap switch work

# View branches
zap branch

⚙️ Installation

Using npm (recommended)

npm install -g zap-tcm

From source

git clone https://github.com/calebephrem/zap-tcm.git
cd zap
npm install
npm link

📚 Command Reference

  • zap [command] — for current project (directory) (./.zap)
  • zapg [command] — for global task management in home directory (~/.zap)

| Command | Description | | -------------------------------------- | ---------------------------------------------------------------------------------------------- | | init | Initialize a new zap repository | | branch [name] | Create a branch (or list branches if no name is given) | | branch [-d, --delete] [name] | Delete a branch | | branch [-r, --rename] [name] [newName] | Rename a branch | | switch [name] | Switch to a branch | | add [task] | Add a new task to the current branch | | list | List all tasks in the current branch | | update [id] [task] | Update a task | | remove [id] | Remove a task | | complete [id] | Mark a task as complete | | incomplete [id] | Mark a task as incomplete | | search [keyword] | Search tasks in the current branch (use search -g [keyword] to search globally) | | merge [source] [target] [--unsort] | Merge source branch into target branch (unsort based on createdAt if --unsort flag provided) | | tag [id] [tag] | Add a tag to a task (replace id with -d to remove a tag) | | tag [-r, --rename] [tag] [newTag] | Rename tag | | move [id] [branch] | Move a task to another branch | | import [branch] [file] | Import tasks from a file into a branch | | export [branch] [file] | Export tasks from a branch to a file | | stats | Show statistics for the current branch (use stats -g for global stats) | | config [scope] [key] [value] | Configuration for --global and --local settings | | config [key] | Get configuration value | | -v, --version | Show version information | | -h, --help | Show help message |

💡 Example Workflow

zap init
zap add "Build Quantum Theme site"
zap add "Complete the README file"
zap list

zap branch personal
zap switch personal
zap add "Learn Python"
zap add "Learn Rust"

zap switch main
zap list
zap complete 1

Each branch has its own independent todos — just like code branches in Git.

🧑‍💻 Contributing

Contributions are welcome!
Fork the repo, make your changes, and submit a pull request.
Make sure to read CONTRIBUTING before you start.

📄 License

MIT © Caleb Ephrem