Forrest logo
back to the wapm tool

wapm:tldr:53bc1

wapm: List top-level globally installed packages.
$ wapm list --global
try on your machine

The command "wapm list --global" is used to list all the installed packages on the global scope in WebAssembly Package Manager (wapm).

Here's an explanation of each part of the command:

  • "wapm": It is the CLI tool for managing WebAssembly packages. It allows users to install, manage, and publish packages in WebAssembly format.
  • "list": This is the subcommand used to list all the installed packages.
  • "--global": This flag specifies that the list should include packages that have been installed globally. Global installation means that the packages are available system-wide and can be used in any project or application.

By running this command, you will get a list of all the packages installed globally, which can be helpful for managing and organizing the installed packages on your system.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the wapm tool