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

agvm

v1.0.0-beta.0

Published

Cross-platform Angular CLI version manager.

Readme

AGVM – Angular Global Version Manager (Beta)

Cross-platform Angular CLI version manager.

npm license


❓ Why AGVM?

Managing multiple global versions of Angular CLI can be a pain — especially when switching between projects.

AGVM solves this by:

  • Installing multiple Angular CLI versions side-by-side
  • Switching between them easily
  • Automatically restoring your original global version when needed
  • Working cross-platform (Linux & Windows)

⚙️ Initial Setup (Linux/macOS Only)

For AGVM to work without sudo, perform these steps once:

  1. Set npm's global prefix to your user directory:
npm config set prefix ~/.local
  1. Add ~/.local/bin to your PATH:
grep -qxF 'export PATH="$HOME/.local/bin:$PATH"' ~/.bashrc \
  || echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
  1. If agvm use or agvm uninstall doesn’t update the ng command properly, run::
hash -r   # for bash/sh
rehash    # for zsh

✅ Windows users: No setup needed, you're good to go!


⚠️ Disclaimer – Beta Notice

AGVM is currently in beta. While it has been tested on Linux and Windows, you may still encounter bugs or edge cases.
Please report any issues or suggestions in the issue tracker.

If you're using nvm to manage your Node.js versions, remember to re-run:

agvm use <angular-version>

This is necessary because AGVM depends on the npm prefix associated with the current Node.js version.
Failing to do so may result in unexpected behavior or a broken ng command.

When switching Node versions via nvm use, you may also see a warning like:

Your user’s .npmrc file (${HOME}/.npmrc)
has a `globalconfig` and/or a `prefix` setting, which are incompatible with nvm.

You can safely suppress this by using:

nvm use --delete-prefix <version> --silent

🩺 If you suspect a problem, run:

agvm doctor

It will validate your environment and offer hints to fix common issues.

📦 Installation

📋 Requirements:

  • Node.js >= 18.19.0
  • npm >= 10

Install AGVM globally:

npm install -g agvm

🚀 Basic Usage

# Install a specific Angular CLI version
agvm install 17.3.8

# Use a specific version
agvm use 17.3.8

# List installed versions
agvm list

# Check your configuration
agvm doctor

# Uninstall a version
agvm uninstall 17.3.8

🧪 Local Development

To contribute or test AGVM locally, see GETTING_STARTED.md for:

  • Cloning and building the CLI

  • Testing locally via npm link or direct install

  • Packaging with npm pack for other machines

🤝 Contributing

We welcome contributions!

📖 Resources