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

rove-tui

v0.2.0

Published

Interactive TUI file explorer

Readme

                 ____   ___  _   _ _____
                |  _ \ / _ \| | | | ____|
                | |_) | | | | | | |  _|
                |  _ <| |_| \ \_/ / |___
                |_| \_\\___/ \___/|_____|
                   EXPLORE THE CONTEXT

A terminal file explorer for everyone.


Why

The terminal is the most powerful environment a developer has. But navigating files in it has always felt like a compromise — you either open a whole IDE just to see your project structure, or you're running ls and cd blindly, one directory at a time.

rove exists because you shouldn't need a GUI to navigate like one. You should be able to see your project, move through it with your keyboard, and run shell commands on files — without ever leaving the terminal.

It's built for everyone: the vim user who lives in tmux, and the person who just started using Claude Code and wants to explore their project without opening VS Code on the side. No config files. No plugins to install. Just run it.


Demo

TODO: Add a GIF or screenshot here.


Install

npm install -g rove-tui

Or build from source:

git clone https://github.com/IsNielsen/rove.git
cd rove
npm install
npm run build
npm link

Usage

rove              # Open the file explorer in the current directory
rove -g           # Enable git status decorations
rove -d 5         # Show up to 5 levels of folder depth (default: 3)
rove -g -d 2      # Combine options

Options

| Flag | Description | Default | |------|-------------|---------| | -g, --git | Show git status colors (modified, untracked, ignored) | off | | -d, --depth <n> | Maximum folder depth to display | 3 |


How It Works

rove is a command launcher, not a file manager. The idea: navigate to a file, type a command, run it.

After a command runs, rove comes back with a history panel showing previous output. Navigate to another file and run another command, or press q to exit.

Navigation

| Key | Action | |-----|--------| | / k | Move cursor up | | / j | Move cursor down | | / l | Expand a directory | | / h | Collapse a directory | | gg | Jump to top | | G | Jump to bottom | | - | Go to parent directory | | / | Filter files by name | | ? | Show keybindings help | | q | Quit |

Running Commands

Press : to open the command bar, or press Tab to open it with the selected file pre-inserted.

> vim src/index.ts█   [Tab] insert file  [↵] run  [Esc] cancel

| Key | Action | |-----|--------| | : | Open command bar (empty) | | Tab (nav mode) | Open command bar with selected file inserted | | Tab (cmd mode) | Insert selected filename at cursor position | | / | Recall previous commands from history | | Ctrl+A / Ctrl+E | Move cursor to start / end of line | | Ctrl+W | Delete word before cursor | | Ctrl+U | Clear the command bar | | Enter | Run the command | | Esc | Cancel and return to navigation |

Filtering

Press / to enter filter mode. The tree narrows as you type, showing only matching files and their parent directories.

| Key | Action | |-----|--------| | Enter | Confirm filter, return to navigation | | Esc | Clear filter and return to navigation |

Examples

| What you type | What runs | |---------------|-----------| | :vim → Tab → Enter | vim src/index.ts | | Tab → git add → Enter | git add src/index.ts | | :cat → Tab → \| grep foo → Enter | cat src/index.ts \| grep foo | | /App → Enter → Tab → vim → Enter | vim src/App.tsx |

New to terminal editors?

If you're used to VSCode or Google Docs, here are good starting points:

| Editor | Install | Best for | |--------|---------|----------| | nano <file> | pre-installed on most systems | Simplest terminal editor; hints shown at the bottom of the screen | | micro <file> | brew install micro / snap install micro | Feels most like a normal editor — familiar shortcuts like Ctrl+S, Ctrl+Z |

With rove, you can navigate to any file, press Tab, type nano (or micro), and hit Enter.


Git Integration

Run with -g to see git status colors in the file tree:

| Color | Meaning | |-------|---------| | Yellow | Modified (tracked, with changes) | | Green | Untracked (new file) | | Dimmed | Ignored (matches .gitignore) |

Press r to manually refresh git status. It also auto-refreshes every 30 seconds.

Works in any git repository. In non-git directories, the flag is silently ignored.


History Panel

After running commands, a history panel appears at the bottom of the screen showing previous command output. Scroll through it while navigating the file tree:

| Key | Action | |-----|--------| | [ or Shift+↑ | Scroll history up | | ] or Shift+↓ | Scroll history down |


Why Not ranger / nnn / fzf?

ranger / nnn: Great tools, but they're full file managers — lots of config, lots of concepts to learn. rove has one job: help you pick a file and run a command on it.

fzf: Fuzzy search is powerful, but it's text-only. Sometimes you want to see the tree — where a file lives relative to everything else — not just match its name.

A GUI IDE: If you're already in the terminal, you shouldn't have to leave it just to navigate your project.


Contributing

Contributions are welcome at any skill level — whether you're fixing a typo, reporting a bug, or adding a feature you wish existed.

Getting started

git clone https://github.com/your-username/rove.git
cd rove
npm install
npm run dev      # Run directly with tsx (no build step needed)
npm run build    # Compile to dist/

What to contribute

  • Bug fixes
  • New keybindings or interaction improvements
  • Accessibility improvements
  • Configuration options (colorschemes, ignored directories, etc.)
  • Better documentation or examples
  • Tests (none exist yet — all contributions welcome)

Guidelines

  • Keep it simple. Match the style of existing code in src/App.tsx.
  • rove is TypeScript + React + Ink. If you're new to Ink, it's React but for the terminal — give their docs a quick read.
  • Open an issue before starting a large change so we can align on direction.
  • PRs of any size are welcome.

License

MIT — see LICENSE.