We're a place where coders share, stay up-to-date and grow their careers.
There's no javascript security solution that is fullproof.
WASM is hard to use in this case since you can't access the DOM directly -- it's very difficult to conceal the error source.
Of course, if you write the whole application in WASM, that's a good route.
You can write parts that do not require dom in wasm. And parse in functions that perform dom operations as a callback
You can write parts that do not require dom in wasm
There's no javascript security solution that is fullproof.
WASM is hard to use in this case since you can't access the DOM directly -- it's very difficult to conceal the error source.
Of course, if you write the whole application in WASM, that's a good route.
You can write parts that do not require dom in wasm. And parse in functions that perform dom operations as a callback
You can write parts that do not require dom in wasm