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

@dracorunner/avm

v0.2.6

Published

A lightweight local/global command alias manager

Readme

avm — Alias Version Manager

A lightweight local/global command alias manager that works like asdf or nvm, but for command aliases. It reads from a local .avm.json in the current directory, falls back to a global ~/.avm.json, and if no alias is found, it offers interactive suggestions or passes the command through to the shell normally.

Why avm?

Development setups often start clean: a few git aliases, a tidy .zshrc, and some short commands. But as soon as you dive into complex ecosystems like React Native, everything changes. Suddenly, you're juggling:

  • Complex ADB commands
  • Cryptic Xcode flags
  • Long Emulator IDs
  • App IDs and deployment scripts

The problem isn't the platform—it's context switching. Every project and every platform has different commands and syntax. You waste time googling the same commands or digging through Slack history.

avm was built to fix that.

Instead of memorizing commands, you define them once per project in a .avm.json. avm keeps your shorthand scoped to the project and directory.

  • One command runner for everything.
  • Project-scoped aliases that don't pollute your global shell config.
  • Global fallback for your most common tools.
  • Clean environment: No more .zshrc bloat or git alias mess.

Features

  • Directory-Aware: Aliases change automatically based on your current folder.
  • Global & Local: Use global aliases for general tools and local ones for project-specific tasks.
  • Interactive Suggestions: (New!) If you mistype a command, avm suggests the closest match and lets you run it immediately.
  • Placeholder Support: Pass arguments into your aliases using $1, $2, etc.
  • Passthrough: If no alias is found, it runs the command through your shell as-is.
  • Extensible Plugins: (New!) Dynamically extend avm with community or custom plugins.

Plugins

avm supports a language-agnostic plugin system to dynamically discover project-specific aliases.

Official Plugins

| Plugin | Description | | :--- | :--- | | node | Automatically exposes package.json scripts as aliases (npm, yarn, pnpm, bun). |

See the Plugins Documentation for installation and creation guides.

For technical details on the architecture, see ARCHITECTURE.md. For contribution and release instructions, see the Development Guide.

Installation

Homebrew

brew tap DracoRunner/tap
brew install avm

npm

npm install -g @dracorunner/avm

curl (recommended — auto-configures shell)

curl -fsSL https://raw.githubusercontent.com/DracoRunner/avm/main/install.sh | bash

Shell Setup

Add this line to your ~/.zshrc or ~/.bashrc:

eval "$(avm-bin shell-init)"

Usage Examples

Define your aliases in .avm.json:

{
  "android:start": "npx react-native run-android",
  "ios:build": "npx react-native run-ios --configuration Release",
  "git:feature": "git checkout -b feature/$1",
  "docker:up": "docker-compose up -d"
}

Now you just type:

  • avm android:start
  • avm ios:build
  • avm git:feature my-new-feature
  • avm docker:up

Interactive Suggestions

Mistyped a command? avm has your back:

$ avm tv-run
avm: unknown command or alias "tv-run"
? Did you mean one of these?:
  ▸ tv:run
    None (run as-is)

Commands

  • avm init: Initialize local config.
  • avm add <key> <value>: Add local alias.
  • avm add -g <key> <value>: Add global alias.
  • avm list (or ls): List all aliases.
  • avm remove <key> (or rm): Remove an alias.
  • avm which <key>: See where an alias points.

Read More

Check out the story behind avm on LinkedIn.

License

MIT