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

@atsumo/voy

v0.1.0

Published

Three-pane TUI file manager built with Bun + Ink (React for CLI).

Readme

Voy

Three-pane TUI file manager built with Bun + Ink (React for CLI).

The layout is inspired by Yazi, but the keybindings and behavior follow Vim conventions. If you're familiar with Yazi, note that the key mappings are not the same — Voy uses its own Vim-oriented bindings.

demo

Features

  • Three-pane layout — Parent / Current / Preview columns
  • Vim-style navigationhjkl, gg/G, H/M/L, Ctrl+d/Ctrl+u/Ctrl+f/Ctrl+b, numeric prefix (5j)
  • File operations — Copy (yy), Cut (x), Delete (dd/D), Paste (pp), Rename (r), Create (o/O)
  • Visual selectionSpace toggle, v visual mode, V select all
  • Search/ incremental search, n/N jump between matches
  • Command mode:q, :cd, :mkdir, :touch
  • Preview — Syntax highlighting (shiki), directory listings, binary detection
  • Preview mode — Vim normal-style cursor movement, line selection, copy to clipboard
  • Directory historyCtrl+o to jump back, ~ to go home
  • Hidden files. to toggle visibility
  • Virtual scrolling — Handles large directories efficiently
  • Color coding — File type based coloring (30+ extensions)

Requirements

Getting Started

# Install dependencies
bun install

# Run
bun run src/index.tsx

# Or with a specific directory
bun run src/index.tsx /path/to/dir

Keybindings

Normal Mode — Navigation

| Key | Action | |-----|--------| | j / | Move cursor down | | k / | Move cursor up | | l / / Enter | Enter directory / open preview | | h / / - | Parent directory | | gg | Go to first entry | | G | Go to last entry | | H | Jump to top of screen | | M | Jump to middle of screen | | L | Jump to bottom of screen | | Ctrl+d | Half page down | | Ctrl+u | Half page up | | Ctrl+f | Full page down | | Ctrl+b | Full page up | | ~ | Go to home directory | | Ctrl+o | Go back (directory history) |

Normal Mode — File Operations

| Key | Action | |-----|--------| | yy | Yank (copy) file(s) | | x | Cut file(s) (move via pp) | | dd / D | Delete file(s) (with confirmation) | | pp | Paste file(s) | | r | Rename | | o | Create new file | | O | Create new directory | | e | Open in $EDITOR | | W | Open with system default app | | Space | Toggle selection | | v | Visual selection mode | | V | Select / deselect all |

Normal Mode — Other

| Key | Action | |-----|--------| | P | Enter preview mode | | / | Search mode | | n / N | Next / previous match | | : | Command mode | | . | Toggle hidden files | | q | Quit |

Preview Mode

Enter with P or l on a text file. The preview pane gets a Vim normal-style cursor.

| Key | Action | |-----|--------| | j / k / / | Move cursor | | gg / G | Go to first / last line | | Ctrl+d / Ctrl+u | Half page down / up | | Space | Toggle line selection | | v | Visual line selection | | V | Select / deselect all lines | | y | Copy selected lines to system clipboard | | e | Open in $EDITOR at cursor line | | q / Esc | Exit preview mode |

Visual Mode

Enter with v in normal mode.

| Key | Action | |-----|--------| | j / k | Extend selection | | v | Confirm selection | | Esc | Cancel selection |

Commands

| Command | Action | |---------|--------| | :q | Quit | | :cd <path> | Change directory | | :mkdir <name> | Create directory | | :touch <name> | Create file |

Tech Stack

  • Runtime: Bun
  • UI: Ink 6 (React 19)
  • Fullscreen: fullscreen-ink
  • Syntax Highlighting: shiki (VS Code quality)
  • Language: TypeScript (strict mode)

Testing

bun test

License

MIT