WASM Internals Part 1
a-j.gitbook.io
WASM Internals Part 1
1–6 of 6 posts
Re: WASM Internals Part 1
#2I hope you like it and I will try to keep improving my writing capabilities and touch on interesting topics.
Re: WASM Internals Part 1
#3Re: WASM Internals Part 1
#4Found a typo: "moudle" -> "module"
https://github.com/antferdom/wasm_playground/blob/f380f675da...
Re: WASM Internals Part 1
#5Thank you for writing the article, it's good introductory material on the topic. Found a typo: "moudle" -> "module" https://github.com/antferdom/wasm_playground/blob/f380f675da...
AND I have already modified the misspelling. Thank you as well for that one, as it also means that you read it haha.
Re: WASM Internals Part 1
#6Nice! Will look for your future tutorials. I was able to create a little js->wasm obfuscation tool with emscripten, but for some reason when I tried to initialize a C array larger than 512 bytes I always get errors. My work around was defining the array of given size and storing the obfuscated binary byte per byte. Wasm files seem to be 4x larger this way. Maybe this time I'll make it directly in webassembly.