wapm: add page (#3808)

* wapm: add page

* wapm: apply review comments
client-spec/clarity
Owen Voke 2020-02-01 11:58:26 +00:00 committed by GitHub
parent 16a1ee56c1
commit 797ef1c201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages/common/wapm.md Normal file
View File

@ -0,0 +1,36 @@
# wapm
> The WebAssembly package manager.
> More information: <https://wapm.io/help/reference>.
- Interactively create a new wapm.toml file:
`wapm init`
- Download all the packages listed as dependencies in wapm.toml:
`wapm install`
- Download a specific version of a package and add it to the list of dependencies in wapm.toml:
`wapm install {{package_name}}@{{version}}`
- Download a package and install it globally:
`wapm install --global {{package_name}}`
- Uninstall a package and remove it from the list of dependencies in wapm.toml:
`wapm uninstall {{package_name}}`
- Print a tree of locally-installed dependencies:
`wapm list`
- List top-level globally installed packages:
`wapm list --global`
- Execute a package command using the Wasmer runtime:
`wapm run {{command_name}} {{arguments}}`