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

@fahimadib01/milo

v0.1.4

Published

Terminal file browser and diff viewer with a VS Code-style layout.

Readme

Milo

Terminal-native file browser and diff viewer for Git repositories, built with Bun, React, and OpenTUI.

npm license

Milo brings a VS Code-style file and source-control workflow into your terminal: browse your project tree, inspect changed files, stage and unstage work, search across the workspace, and review diffs without leaving the CLI.

Features

  • File explorer with expandable directories and open-file navigation
  • Git changes view with separate staged and unstaged sections
  • Single-file diff viewer with colored additions, deletions, and line numbers
  • File preview pane for reading source files directly in the terminal
  • SCM actions for staging, unstaging, selecting, and discarding changes
  • Workspace search with quick-open, local find, and global find
  • Keyboard-first workflow with familiar editor-style shortcuts
  • Mouse support for tabs, files, diff rows, toolbar actions, and search results
  • Syntax highlighting powered by Tree-sitter through OpenTUI
  • TypeScript navigation with go-to-definition support via typescript-language-server

Requirements

  • Bun >= 1.3.4
  • Git
  • A terminal with modern keyboard and mouse event support

Milo is published through npm, but the CLI uses a Bun shebang. Make sure bun is available on your PATH.

Installation

npm install -g @fahimadib01/milo

You can also install with Bun:

bun add -g @fahimadib01/milo

Usage

Run Milo from inside a Git repository:

milo

Keyboard Shortcuts

Global

| Shortcut | Action | | --- | --- | | Ctrl+K | Show or close shortcuts | | Esc | Close modal or quit | | Ctrl+C | Quit | | Tab / Shift+Tab | Cycle focus between sidebar and editor | | Ctrl+B | Toggle sidebar | | Cmd/Ctrl+R | Refresh workspace | | Cmd/Ctrl+Shift+E | Focus Files | | Cmd/Ctrl+Shift+G | Focus Changes |

Search

| Shortcut | Action | | --- | --- | | Ctrl+P | Open file search | | Ctrl+F | Find in current file | | Ctrl+Shift+F | Find across files | | Up / Down or J / K | Move search selection | | Enter | Open selected result |

Sidebar

| Shortcut | Action | | --- | --- | | Up / Down or J / K | Move selection | | Left / Right or H / L | Collapse or expand directory | | Enter | Open selected item | | O | Open selected file | | Space | Stage or unstage selected change | | Backspace | Discard selected unstaged change |

Editor

| Shortcut | Action | | --- | --- | | Up / Down or J / K | Move selected line | | Left / Right or H / L | Move cursor by column | | Option+Left / Option+Right | Move cursor by word | | Ctrl/Cmd+Left / Ctrl/Cmd+Right | Move to line start or end | | Home / End or Ctrl+A / Ctrl+E | Move to line start or end | | Ctrl+] | Go to definition | | Ctrl+Click | Go to definition from clicked line |

Development

bun install
bun run start

Useful checks:

bun test
npx tsc --noEmit
bun run build

Package

Milo is available on npm:

npm install -g @fahimadib01/milo

Package page: https://www.npmjs.com/package/@fahimadib01/milo

License

MIT