One of my team has used GDB on Node.JS to deal with SIGALRMs we were setting for timeouts. That's OK.
But we'd like a way of debugging our WebAssembly code running within Node,js; we can handle most things with printf debugging, but we have a possible optimiser bug in Emscripten, and those are much easier to dig out with a debugger.
I'm partially sighted, and find IDEs very difficult to use, so the ability to use GDB or LLDB on WebAssembly code would be very helpful
We don't want to do this in a browser because we have a large and complex test harness, written in C, incorporating a LISP interpreter which we use for writing test scripts. The harness accesses test data files very freely. Getting all that working in a browser and a bundled file-system would be a huge task, and is definitely a last resort.
Thanks,
John Dallman