├── .gitignore ├── LICENSE ├── README.md ├── dotnet ├── .gitignore ├── Allocator.cs ├── Host.cs ├── Program.cs ├── README.md └── WasmtimeDemo.csproj ├── markdown ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── nodejs ├── README.md ├── loader.mjs ├── package.json └── run.mjs ├── python ├── README.md └── run.py ├── rust ├── Cargo.toml └── src │ └── main.rs └── webpack ├── README.md ├── index.js ├── package.json ├── static └── index.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.*~ 3 | .DS_Store 4 | 5 | .vscode 6 | 7 | bin/ 8 | obj/ 9 | -------------------------------------------------------------------------------- /dotnet/Allocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/dotnet/Allocator.cs -------------------------------------------------------------------------------- /dotnet/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/dotnet/Host.cs -------------------------------------------------------------------------------- /dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/dotnet/Program.cs -------------------------------------------------------------------------------- /dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/dotnet/README.md -------------------------------------------------------------------------------- /dotnet/WasmtimeDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/dotnet/WasmtimeDemo.csproj -------------------------------------------------------------------------------- /markdown/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/markdown/Cargo.toml -------------------------------------------------------------------------------- /markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/markdown/README.md -------------------------------------------------------------------------------- /markdown/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/markdown/src/lib.rs -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/nodejs/README.md -------------------------------------------------------------------------------- /nodejs/loader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/nodejs/loader.mjs -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /nodejs/run.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/nodejs/run.mjs -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/python/README.md -------------------------------------------------------------------------------- /python/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/python/run.py -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/rust/src/main.rs -------------------------------------------------------------------------------- /webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/webpack/README.md -------------------------------------------------------------------------------- /webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/webpack/index.js -------------------------------------------------------------------------------- /webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/webpack/package.json -------------------------------------------------------------------------------- /webpack/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/webpack/static/index.html -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wasmtime-demos/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------