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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@alshdavid/apvm

v0.0.20

Published

Version manager and installer for Atlaspack. This project allows you to:

Downloads

67

Readme

📚 Atlaspack Version Manager 📚

Version manager and installer for Atlaspack. This project allows you to:

  • Install Atlaspack versions
    • Npm version
    • Git Branch Name (will compile, requires Rust, Yarn)
    • Git Commit Hash (will compile, requires Rust, Yarn)
    • Local Atlaspack sources
  • Link version into node_modules
  • Run commands against specific version of Atlaspack

Installation

# Install globally
npm install -g @atlaspack/apvm

# Install into current project
npm install --save-dev @atlaspack/apvm
yarn add -D @atlaspack/apvm

Usage

CLI

# Install a version of Atlaspack from npm
apvm install 2.14.0
apvm install 2.15.0

# Set the system default version of Atlaspack
apvm default 2.15.0

# Ignore the .apvmrc or package.json#atlaspack.version
# apvm override 2.14.0

# Link into node_modules the version specified in the project config or default
apvm npm link

# Link into node_modules (overriding project config)
apvm npm link 2.14.0
apvm npm link 2.15.0

# Link into node_modules with backwards compatibility for @atlaspack/* packages
apvm npm link --legacy 2.15.0

# Run Atlaspack commands using the current or default version
apvm atlaspack build
apvm atlaspack --version

# Also works directly with "atlaspack" command
atlaspack build
atlaspack --version

# Npm project flow
npm init -y
npm install @atlassian/apvm
  #> npx apvm npm postinstall

npx apvm atlaspack --version
npx atlaspack --version

# Npm helper commands
apvm npm scan     # Scans node_modules recursively for
                  # all instances of Atlaspack

apvm npm dedupe   # Traverses node_modules recursively
                  # and ensures only one version of
                  # Atlaspack is installed

Config

Config can be specified in a package.json or .apvmrc

// package.json
{
  "atlaspack": {
    "version": "2.15.0"
  }
}
# .apvmrc
2.15.0

Install a version from git

Versions obtained from git will build after being fetched. This takes a while 🙏

apvm install git:main
apvm install git:my-branch
apvm install git:1fb73643c

Register a locally installed git repo

# Register your local Atlaspack sources
apvm install local:/Users/username/atlaspack

Installation (Binary)

MacOS

# Download and extract, add this to your PATH later
curl -L https://github.com/alshdavid/atlaspack-version-manager/releases/download/latest/apvm-macos-arm64.tar.xz | tar -xJvf - -C .
./apvm --help

Linux

# Download and extract, add this to your PATH later
curl -L https://github.com/alshdavid/atlaspack-version-manager/releases/download/latest/apvm-linux-amd64.tar.xz | tar -xJvf - -C .
./apvm --help