Categorygithub.com/soypat/vecty-examples
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

  1. Change directory to the folder with the example you wish to run
  2. Run wasmserve. To install:
    go install github.com/hajimehoshi/wasmserve@latest
    
  3. 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.