https://github.com/ayys/hello
Hello World in wasm
https://github.com/ayys/hello
Last synced: about 2 months ago
JSON representation
Hello World in wasm
- Host: GitHub
- URL: https://github.com/ayys/hello
- Owner: ayys
- Created: 2024-02-08T11:51:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-08T12:32:44.000Z (over 1 year ago)
- Last Synced: 2025-02-13T18:42:29.234Z (4 months ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello-world
Hello World in wasm# running
```bash
wasmer run hello-world# or run your local version
# cargo wasix build --release
wasmer run .
```# Building
```bash
# install wasmer
curl https://get.wasmer.io -sSfL | sh# install cargo-wasix
cargo install cargo-wasix# build the release version
cargo wasix build --release# run it with wasmer
wasmer run .
```