Forrest logo
back to context overview

wapm

List of commands for wapm:

  • wapm:tldr:2bbb4 wapm: Download all the packages listed as dependencies in `wapm.toml`.
    $ wapm install
    try on your machine
    explain this command
  • wapm:tldr:3fbf6 wapm: Execute a package command using the Wasmer runtime.
    $ wapm run ${command_name} ${arguments}
    try on your machine
    explain this command
  • wapm:tldr:3fdb4 wapm: Uninstall a package and remove it from the list of dependencies in `wapm.toml`.
    $ wapm uninstall ${package_name}
    try on your machine
    explain this command
  • wapm:tldr:526c6 wapm: Interactively create a new `wapm.toml` file.
    $ wapm init
    try on your machine
    explain this command
  • wapm:tldr:53bc1 wapm: List top-level globally installed packages.
    $ wapm list --global
    try on your machine
    explain this command
  • wapm:tldr:6e9d8 wapm: Download a package and install it globally.
    $ wapm install --global ${package_name}
    try on your machine
    explain this command
  • wapm:tldr:c4a40 wapm: Download a specific version of a package and add it to the list of dependencies in wapm.toml.
    $ wapm install ${package_name}@${version}
    try on your machine
    explain this command
  • wapm:tldr:deac5 wapm: Print a tree of locally installed dependencies.
    $ wapm list
    try on your machine
    explain this command
back to context overview