WebAssembly is a new binary format that allows developers to bring their experience and applications from a variety of programming languages to the web, and to share those experiences with even more users across all platforms.
However, porting code to a new target always comes with its own challenges: providing custom bindings to the host APIs, removing pieces that are not compatible with the chosen target, and, of course, finding hidden assumptions that only worked by chance on the original platform (or, as we like to call them: bugs). To successfully overcome these challenges, you want to be able to debug your source code not just on the platform it was originally built for, but on the target one as well. This talk looks at:
Resources:
Debugging with Dwarf → https://goo.gle/wasm-debugging-with-dwarf
Wasm debugging extension → https://goo.gle/wasm-debugging-extension
Debugging → https://goo.gle/39uu3ew
#webassembly #wasm #web-development #programming #developer