WebAssembly
Readings
- Embedding Python in Rust with WebAssembly
- Wasmer
- RustPython (Wasmer)
- Embedding RustPython into your Rust Applications
- Online demo (Python interpreter runs in browser): https://rustpython.github.io/demo/
- wasmtime runtime: a standalone runtime for WebAssembly
- Read the docs
- It can be used to run
.wasm
file in CLI. - It provides language support for multiple languages (C, C++, Python, .NET, Go, Ruby) so that wasm module can run within these languages
- wasmtime crate
- Rust embedding API for the Wasmtime project: a cross-platform engine for running WebAssembly programs.
- Run wasm modules from Rust program
- WASI Tutorial
- wasmer crate
- WebAssembly Official Website
- Wasmer takes WebAssembly libraries mainstream with WAI
- Build library to wasm and use it in any langauge