A Gradle Plugin to compile WASM to JVM easily. Contribute to renatoathaydes/wasm-on-jvm development by creating an account on GitHub.
WebAssembly is a new language for the web, although unlike JavaScript it's not a language you are expected to use directly. However, it is actually possible to write WebAssembly directly by hand and it turns out this is an educational and enjoyable process, which I will explore in this blog post.
A Gradle Plugin to compile WASM to JVM easily. Contribute to renatoathaydes/wasm-on-jvm development by creating an account on GitHub.
๐ Curated list of awesome things regarding the WebAssembly (wasm) ecosystem. - mbasso/awesome-wasm
๐ Curated list of awesome things regarding the WebAssembly (wasm) ecosystem. - mbasso/awesome-wasm
Writing WebAssembly by hand with Webpack
When hand-writing WebAssembly it can get problematic to refer to particular constants by their value instead of being able to put a name to them. I put together a simple preprocessor to allow for constants to be handled by name, and in this article I look at how the preprocessor works with the WebAssembly Text format.