├── .gitignore ├── LICENSE ├── README.md └── samples ├── dotnet8-wasm ├── HelloWasm │ ├── HelloWasm.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── helloworld.txt │ └── runtimeconfig.template.json └── README.md ├── go-wasm ├── README.md ├── hello-http.go ├── hello-wasm.go └── helloworld.txt ├── hello-wagi ├── HelloWagi │ ├── HelloWagi.csproj │ └── Program.cs ├── README.md ├── hello-wagi.go ├── images │ └── wagi.png └── modules.toml ├── hello-wasix ├── .gitignore ├── Cargo.toml ├── README.md └── src │ └── main.rs ├── python-spin-wasm ├── README.md └── hello_wasm │ ├── .gitignore │ ├── Pipfile │ ├── README.md │ ├── app.py │ └── spin.toml ├── rust-wasm-docker ├── README.md ├── hello-wasm │ ├── Cargo.toml │ ├── Dockerfile │ └── src │ │ └── main.rs └── images │ ├── docker_containerd.png │ └── dockerhub_wasm.png └── rust-wasm ├── README.md └── hello-wasm ├── Cargo.toml ├── helloworld.txt └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/README.md -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/HelloWasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/HelloWasm/HelloWasm.csproj -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/HelloWasm/Program.cs -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/HelloWasm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/HelloWasm/README.md -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/helloworld.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /samples/dotnet8-wasm/HelloWasm/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/HelloWasm/runtimeconfig.template.json -------------------------------------------------------------------------------- /samples/dotnet8-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/dotnet8-wasm/README.md -------------------------------------------------------------------------------- /samples/go-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/go-wasm/README.md -------------------------------------------------------------------------------- /samples/go-wasm/hello-http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/go-wasm/hello-http.go -------------------------------------------------------------------------------- /samples/go-wasm/hello-wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/go-wasm/hello-wasm.go -------------------------------------------------------------------------------- /samples/go-wasm/helloworld.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /samples/hello-wagi/HelloWagi/HelloWagi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/HelloWagi/HelloWagi.csproj -------------------------------------------------------------------------------- /samples/hello-wagi/HelloWagi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/HelloWagi/Program.cs -------------------------------------------------------------------------------- /samples/hello-wagi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/README.md -------------------------------------------------------------------------------- /samples/hello-wagi/hello-wagi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/hello-wagi.go -------------------------------------------------------------------------------- /samples/hello-wagi/images/wagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/images/wagi.png -------------------------------------------------------------------------------- /samples/hello-wagi/modules.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wagi/modules.toml -------------------------------------------------------------------------------- /samples/hello-wasix/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /samples/hello-wasix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wasix/Cargo.toml -------------------------------------------------------------------------------- /samples/hello-wasix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wasix/README.md -------------------------------------------------------------------------------- /samples/hello-wasix/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/hello-wasix/src/main.rs -------------------------------------------------------------------------------- /samples/python-spin-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/python-spin-wasm/README.md -------------------------------------------------------------------------------- /samples/python-spin-wasm/hello_wasm/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.wasm 3 | .spin -------------------------------------------------------------------------------- /samples/python-spin-wasm/hello_wasm/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/python-spin-wasm/hello_wasm/Pipfile -------------------------------------------------------------------------------- /samples/python-spin-wasm/hello_wasm/README.md: -------------------------------------------------------------------------------- 1 | # A simple Spin HTTP component in Python -------------------------------------------------------------------------------- /samples/python-spin-wasm/hello_wasm/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/python-spin-wasm/hello_wasm/app.py -------------------------------------------------------------------------------- /samples/python-spin-wasm/hello_wasm/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/python-spin-wasm/hello_wasm/spin.toml -------------------------------------------------------------------------------- /samples/rust-wasm-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/README.md -------------------------------------------------------------------------------- /samples/rust-wasm-docker/hello-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/hello-wasm/Cargo.toml -------------------------------------------------------------------------------- /samples/rust-wasm-docker/hello-wasm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/hello-wasm/Dockerfile -------------------------------------------------------------------------------- /samples/rust-wasm-docker/hello-wasm/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/hello-wasm/src/main.rs -------------------------------------------------------------------------------- /samples/rust-wasm-docker/images/docker_containerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/images/docker_containerd.png -------------------------------------------------------------------------------- /samples/rust-wasm-docker/images/dockerhub_wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm-docker/images/dockerhub_wasm.png -------------------------------------------------------------------------------- /samples/rust-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm/README.md -------------------------------------------------------------------------------- /samples/rust-wasm/hello-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm/hello-wasm/Cargo.toml -------------------------------------------------------------------------------- /samples/rust-wasm/hello-wasm/helloworld.txt: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /samples/rust-wasm/hello-wasm/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteatamel/wasm-basics/HEAD/samples/rust-wasm/hello-wasm/src/main.rs --------------------------------------------------------------------------------