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

depth-first-thinking

v2.2.0

Published

A terminal-based task manager with depth-first navigation.

Readme

dft // depth-first-thinking

A terminal-based task manager with depth-first navigation. Break down tasks into subtasks, navigate recursively, and track progress.

Installation

bun add -g depth-first-thinking

Commands

| Command | Aliases | Description | |---------|---------|-------------| | dft new <name> | create, init, add | Create a new project | | dft list | ls, show, projects | List all projects sorted by creation date | | dft open <name> | use, start, run | Launch the interactive TUI session | | dft <name> | - | Shorthand for dft open <name> | | dft tree <name> | view | Print the tree structure to stdout | | dft delete <name> | rm, remove | Delete an existing project | | dft update | upgrade, check-update | Check for updates to dft |

Options

  • dft delete <name> -y, --yes - Skip confirmation prompt when deleting
  • dft tree <name> --show-status - Show status markers (default: true)
  • dft tree <name> --no-status - Hide status markers

Default Behavior

Running dft without any arguments will:

  • Reopen the last opened project if it still exists
  • Otherwise, open the most frequently opened project if one exists
  • Otherwise, list all projects

Navigation

When you open a project, Zen Mode or List Mode is restored from your last session (default is Zen). In Zen Mode, only the currently selected task is displayed, while navigation still works across the full tree:

  • - Move between sibling tasks at the current level (nodes with more children appear first)
  • Space Enter - Enter task / view its subtasks (move deeper in the hierarchy)
  • - Go back to parent task (move up in the hierarchy)
  • Cmd+C - Copy the selected task title to the clipboard
  • / or f - Search tasks by title and jump to a result
  • m - Toggle between Zen Mode (single-task view) and List Mode (full list at current level); choice is remembered across projects
  • n - New subtask
  • e - Edit task title
  • v - Move the current task into another task
  • x - Delete task (confirmation defaults to Delete)
  • d - Toggle complete status
  • q - Quit

Task Display

  • [N] - Total subtasks (all descendants)
  • (done) - Task and all subtasks complete
  • (done, partial) - Task done but some subtasks incomplete

Development

git clone https://github.com/alwalxed/dft.git
cd dft
bun install

License

MIT