repository
0.0.0-20220112185013-24a203ddc511
Repository: https://github.com/soypat/vecty-examples.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
# README
vecty-examples
Basic usage of Vecty framework examples.
Instructions
- Change directory to the folder with the example you wish to run
- Run
wasmserve
. To install:go install github.com/hajimehoshi/wasmserve@latest
- Navigate in browser to localhost:8080
IDE Protip
Add build tags js,wasm
to go tooling. In VSCode you may add a .vscode
folder with a settings.json
configuration file with the following contents:
{
"go.toolsEnvVars": {
"GOOS": "js",
"GOARCH": "wasm"
}
}
This will cause intellisense to work correctly.