LinuxCommandLibrary

wapm

The WebAssembly package manager.

TLDR

Interactively create a new wapm.toml file

$ wapm init
copy


Download all the packages listed as dependencies in wapm.toml
$ wapm install
copy


Download a specific version of a package and add it to the list of dependencies in wapm.toml
$ wapm install [package]@[version]
copy


Download a package and install it globally
$ wapm install --global [package]
copy


Uninstall a package and remove it from the list of dependencies in wapm.toml
$ wapm uninstall [package]
copy


Print a tree of locally installed dependencies
$ wapm list
copy


List top-level globally installed packages
$ wapm list --global
copy


Execute a package command using the Wasmer runtime
$ wapm run [command_name] [arguments]
copy

Copied to clipboard