├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── Makefile ├── README.md ├── browser ├── assets │ └── WASI.png ├── c-app.html ├── c-app.js ├── index.html ├── rust-app.html ├── rust-app.js └── style.css ├── c └── c-app.c ├── node ├── c-app.js └── rust-app.js ├── package.json ├── python.Dockerfile ├── python ├── c-app.py └── rust-app.py ├── rust-app ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── toolchain.Dockerfile └── wasi-sdk.Dockerfile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/README.md -------------------------------------------------------------------------------- /browser/assets/WASI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/assets/WASI.png -------------------------------------------------------------------------------- /browser/c-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/c-app.html -------------------------------------------------------------------------------- /browser/c-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/c-app.js -------------------------------------------------------------------------------- /browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/index.html -------------------------------------------------------------------------------- /browser/rust-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/rust-app.html -------------------------------------------------------------------------------- /browser/rust-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/rust-app.js -------------------------------------------------------------------------------- /browser/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/browser/style.css -------------------------------------------------------------------------------- /c/c-app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/c/c-app.c -------------------------------------------------------------------------------- /node/c-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/node/c-app.js -------------------------------------------------------------------------------- /node/rust-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/node/rust-app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/package.json -------------------------------------------------------------------------------- /python.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/python.Dockerfile -------------------------------------------------------------------------------- /python/c-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/python/c-app.py -------------------------------------------------------------------------------- /python/rust-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/python/rust-app.py -------------------------------------------------------------------------------- /rust-app/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/rust-app/Cargo.lock -------------------------------------------------------------------------------- /rust-app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/rust-app/Cargo.toml -------------------------------------------------------------------------------- /rust-app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/rust-app/src/main.rs -------------------------------------------------------------------------------- /toolchain.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/toolchain.Dockerfile -------------------------------------------------------------------------------- /wasi-sdk.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topheman/webassembly-wasi-experiments/HEAD/wasi-sdk.Dockerfile --------------------------------------------------------------------------------