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:
bash
cargo install wat_servercargo-binstall
If you have cargo-binstall installed, you can install it without building from source:
bash
cargo binstall wat_serverAUR
Install with your favorite AUR helper, for example:
bash
paru -S wasm-language-toolsor for pre-built executable:
bash
paru -S wasm-language-tools-binNix
On NixOS:
bash
nix-env -iA nixos.wasm-language-toolsOn non-NixOS:
bash
nix-env -iA nixpkgs.wasm-language-toolsOr modifying configuration:
nix
environment.systemPackages = [
pkgs.wasm-language-tools
];View detail on Nixpkgs.