GoLand 2020.1 Help

WebAssembly (Wasm)

WebAssembly (Wasm) is a binary code that you can run in a browser. GoLand supports generation of WASM files from GO files. You can read more about You can read more about WebAssembly in documentation at webassembly.org.

  1. Open settings Ctrl+Alt+S, and navigate to Go | Build Tags and Vendoring.

  2. From the OS list, select js.

  3. From the Arch list, select wasm.

  4. Click Add configuration on the main toolbar.

  5. Click Add New Configuration icon The Add New Configuration icon or press Alt+Insert.

  6. In the Files field, add the name of the GO file that you want to execute (for example, main.go).

  7. Clear the Run after build checkbox.

  8. In the Environment field, click the Browse button (the Browse button).

    In the Environment Variables dialog, add two environment variables:

    • GOOS=js
    • GOARCH=wasm
  9. In the Go tool arguments field, replace the -i argument with -o main.wasm, where main.wasm is the name of the future WASM file.

  10. Click OK.

  11. Click the Run <configuration_name > icon or pressShift+F10. As the result, in the Project tool window a new WASM file is created.

    Create the WebAssembly project (Wasm)
Last modified: 07 July 2020