DEV Community

Discussion on: The Promise of WebAssembly

Collapse
 
israelmuca profile image
Israel Muñoz

I'm definitely interested in reading more about WebAssembly. Specially since I read yesterday that Netlify built their Dev Tools with it!

Are there any intro resources that you'd recommend?

Collapse
 
ryan_levick profile image
Ryan Levick

The other resources listed are great. If you want to write some code, I suggest checking out the Rust toolchain for doing WebAssembly. If you have the Rust toolchain setup you simply need to compile your code with: cargo +nightly build --target=wasm32-unknown-wasi. You can then use any other compiler/runtimes I listed above to run your code.

Collapse
 
rhymes profile image
rhymes