wasm-language-tools/docs/guide/getting-started/executable.md
Pig Fang c92ced898e
Some checks are pending
test / test (push) Waiting to run
docs: tweak punctuation
2025-12-01 17:47:31 +08:00

1.1 KiB

Server Executable

If you're using other editors, manually installing the server executable is required.

GitHub Releases

You can download pre-built binaries from GitHub Releases. Select the corresponding file according to your platform.

Cargo

If you've installed Rust, you can run Cargo to install it globally:

cargo install wat_server

cargo-binstall

If you have cargo-binstall installed, you can install it without building from source:

cargo binstall wat_server

AUR

Install with your favorite AUR helper, for example:

paru -S wasm-language-tools

or for pre-built executable:

paru -S wasm-language-tools-bin

Nix

On NixOS:

nix-env -iA nixos.wasm-language-tools

On non-NixOS:

nix-env -iA nixpkgs.wasm-language-tools

Or modifying configuration:

environment.systemPackages = [
  pkgs.wasm-language-tools
];

View detail on Nixpkgs.