rustwasm / wasm_game_of_life

A Rust and WebAssembly tutorial implementing the Game of Life
Apache License 2.0
276 stars 75 forks source link

Without bundler #113

Open stnbu opened 3 years ago

stnbu commented 3 years ago

:warning: this requires externref support ... which is not present on the default Google Chrome (and others). Probably a deal killer for now (?)

Live demo of these changes here: https://dapps.unintuitive.org/wasm_game_of_life/

For me, the less "node" stuff, the easier it is to focus on the fundamentals. So, I am proposing these changes (89% removal).

Removing node from the picture makes this more approachable and hackable for the node-ignorant (like me).

No idea what/if this breaks anything like CI/CD.

I got a whole lot out of the various documentation, tutorials, and videos surrounding this repo. Thanks all! Top notch.