Go

The best way to run Go programs in WasmEdge is to compile Go source code to WebAssembly using TinyGo. In this article, we will show you how.

Install TinyGo

You must have Go already installed on your machine before installing TinyGo. Go v1.17 or above is recommended. For Ubuntu or other Debian-based Linux systems on x86 processors, you could use the following command line to install TinyGo. For other platforms, please refer to TinyGo docs.

  1. wget https://github.com/tinygo-org/tinygo/releases/download/v0.21.0/tinygo_0.21.0_amd64.deb
  2. sudo dpkg -i tinygo_0.21.0_amd64.deb`

Next, run the following command line to check out if the installation is successful.

  1. $ tinygo version
  2. tinygo version 0.21.0 linux/amd64 (using go version go1.16.7 and LLVM version 11.0.0)

Hello world

The simple Go app has a main() function to print a message to the console. The source code in main.go file is as follows.

  1. package main
  2. func main() {
  3. println("Hello TinyGo from WasmEdge!")
  4. }

Inside the main() function, you can use Go standard API to read / write files, and access command line arguments and env variables.

Hello world: Compile and build

Next, compile the main.go program to WebAssembly using TinyGo.

  1. tinygo build -o hello.wasm -target wasi main.go

You will see a file named hello.wasm in the same directory. This is a WebAssembly bytecode file.

Hello world: Run

You can run it with the WasmEdge CLI.

  1. $ wasmedge hello.wasm
  2. Hello TinyGo from WasmEdge!

A simple function

The second example is a Go function that takes a call parameter to compute a fibonacci number. However, in order for the Go application to set up proper access to the OS (e.g., to access the command line arguments), you must include an empty main() function in the source code.

  1. package main
  2. func main(){
  3. }
  4. //export fibArray
  5. func fibArray(n int32) int32{
  6. arr := make([]int32, n)
  7. for i := int32(0); i < n; i++ {
  8. switch {
  9. case i < 2:
  10. arr[i] = i
  11. default:
  12. arr[i] = arr[i-1] + arr[i-2]
  13. }
  14. }
  15. return arr[n-1]
  16. }

A simple function: Compile and build

Next, compile the main.go program to WebAssembly using TinyGo.

  1. tinygo build -o fib.wasm -target wasi main.go

You will see a file named fib.wasm in the same directory. This is a WebAssembly bytecode file.

A simple function: Run

You can run it with the WasmEdge CLI in its --reactor mode. The command line arguments that follow the wasm file are the function name and its call parameters.

  1. $ wasmedge --reactor fib.wasm fibArray 10
  2. 34

Improve performance

To achieve native Go performance for those applications, you could use the wasmedgec command to AOT compile the wasm program, and then run it with the wasmedge command.

  1. $ wasmedgec hello.wasm hello.wasm
  2. $ wasmedge hello.wasm
  3. Hello TinyGo from WasmEdge!

For the --reactor mode,

  1. $ wasmedgec fib.wasm fib.wasm
  2. $ wasmedge --reactor fib.wasm fibArray 10
  3. 34