Setup your Go environment
Last updated
Last updated
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 Go in your system is to follow the official documentation.
To ensure it is installed, let's run the following:
If these commands work, Go is successfully installed!
Now it's time to create a new project and add Wasmer as a dependency:
Now, edit the go.mod
file to add wasmer-go
as a dependency:
For a detailed installation instructions, please refer to Wasmer Go integration documentation.
Next, let's take a look at some examples!