Ask HN: What is your workflow for developing with WASM?
2 comments
- I just write Rust that compiles down to a wasm32 target :)
- Allows me to still use IDEs (e.g., VSCode), get great tooling (i.e., cargo) and still have a tidy little binary to use
- Allows me to still use IDEs (e.g., VSCode), get great tooling (i.e., cargo) and still have a tidy little binary to use
Can you use breakpoints with your setup? In-browser or in-IDE?
When I mess around with raylib I follow this: https://github.com/raysan5/raylib/wiki/Working-for-Web-(HTML...
Do you work with WASM? What's your workflow? How do you debug your code? What languages do you use? What are your use-cases, considering WASM can't manipulate the DOM?