{"id":31769233,"url":"https://github.com/second-state/wasmedge-go","last_synced_at":"2026-02-28T21:32:14.251Z","repository":{"id":42455894,"uuid":"348661491","full_name":"second-state/WasmEdge-go","owner":"second-state","description":"The GO language SDK and API for WasmEdge","archived":false,"fork":false,"pushed_at":"2025-02-14T08:51:58.000Z","size":181,"stargazers_count":107,"open_issues_count":9,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-07T18:57:35.685Z","etag":null,"topics":["go","golang","tensorflow","wasmedge","webassembly"],"latest_commit_sha":null,"homepage":"https://www.secondstate.io/articles/extend-golang-app-with-webassembly-rust/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/second-state.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-03-17T10:05:37.000Z","updated_at":"2025-02-14T08:52:01.000Z","dependencies_parsed_at":"2024-04-14T23:51:55.943Z","dependency_job_id":"7ba47430-c655-4fcd-8102-c5e4e6516471","html_url":"https://github.com/second-state/WasmEdge-go","commit_stats":{"total_commits":118,"total_committers":7,"mean_commits":"16.857142857142858","dds":0.0847457627118644,"last_synced_commit":"746946a0f856f0ddb6523fb3c9780d19493cb56a"},"previous_names":["second-state/ssvm-go"],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/second-state/WasmEdge-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/second-state%2FWasmEdge-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/second-state%2FWasmEdge-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/second-state%2FWasmEdge-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/second-state%2FWasmEdge-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/second-state","download_url":"https://codeload.github.com/second-state/WasmEdge-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/second-state%2FWasmEdge-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002541,"owners_count":26083403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","tensorflow","wasmedge","webassembly"],"created_at":"2025-10-10T02:42:14.817Z","updated_at":"2025-10-10T02:42:17.011Z","avatar_url":"https://github.com/second-state.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WasmEdge for Go Package\n\nThe [WasmEdge](https://github.com/WasmEdge/WasmEdge) is a high performance WebAssembly runtime optimized for server side applications. This project provides a [golang](https://golang.org/) package for accessing to WasmEdge.\n\n* For a complete tutorial, please read the article [Extend Your Golang App with Embedded WebAssembly Functions in WasmEdge](https://www.secondstate.io/articles/extend-golang-app-with-webassembly-rust/), which demonstrates how to embed a Wasm function and how to embed a full Wasm program from the Golang app.\n* WasmEdge in real-time data strems: [AI Inference for Real-time Data Streams with WasmEdge and YoMo](https://www.secondstate.io/articles/yomo-wasmedge-real-time-data-streams/)\n* For more examples, please go to the [WasmEdge-go-examples repo](https://github.com/second-state/WasmEdge-go-examples). Contributing your own example is much appreciated.\n\n## Getting Started\n\nThe `WasmEdge-go` requires `golang` version \u003e= `1.22`. Please check your `golang` version before installation.\nDevelopers can [download golang here](https://golang.org/dl/).\n\n```bash\n$ go version\ngo version go1.23.1 linux/amd64\n```\n\nDevelopers must [install the WasmEdge shared library](https://wasmedge.org/docs/start/install) with the same `WasmEdge-go` release version.\n\n```bash\ncurl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v 0.14.0\n```\n\nFor the developers need the `WasmEdge-TensorFlow` or `WasmEdge-Image` plug-ins for `WasmEdge-go`, please install the `WasmEdge` with the corresponding plug-ins:\n\n```bash\ncurl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- --plugins wasmedge_tensorflow wasmedge_tensorflowlite wasmedge_image -v 0.14.0\n```\n\n\u003e Note: Please refer to the [install guide for plug-ins](https://wasmedge.org/docs/start/install/#install-wasmedge-plug-ins-and-dependencies) to check that you've installed the plug-ins with their dependencies.\n\nFor examples, please refer to the [example repository](https://github.com/second-state/WasmEdge-go-examples/).\n\n## WasmEdge-go Documentation\n\nPlease refer to the [API Documentation](https://wasmedge.org/docs/embed/go/reference/latest) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecond-state%2Fwasmedge-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsecond-state%2Fwasmedge-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecond-state%2Fwasmedge-go/lists"}