Setup your Go environment
Last updated
Was this helpful?
Last updated
Was this helpful?
To be able to run Wasmer inside our Go application, we will need Go to be installed in our system.
The easiest way to get in your system is to follow the official .
To ensure it is installed, let's run the following:
If these commands work, Go is successfully installed!
Now it's time to create new projects and add Wasmer as a dependency:
Now, edit the go.mod
file to add wasmer-go
as a dependency:
Next, let's take a look at some examples!