A zine on what is Wasm and how to work with it in Rust!
Good resoures and reading materials:
- WebAssembly Concepts
- Wasm Portability
- RustWasm book
- Wasm's Memory Model
- Wasm Memory, Illustrated Printing instructions are available here.
Happy Reading!
Edit: Previous version of this zine stated that memory is not shared between Wasm and JS. It is indeed shared. Otherwise lots of the things that make Wasm in the browser work would not work!!
Previous version of this zine also said a Table stores references in a typed array, they are in fact stored in an object.