rustwasm
https://rustwasm.github.io/book/introduction.html
wasm-pack
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
--
I found above version seems more stable/standard version.
So I tried to use this one, but then another version conflict problems.
Basically the latest version of npm messed up, so I needed to down grade to old version npm 3.5.2 in order to run this helloworld.
but it was also necessary to rollback to old version for webpack (4.41.5) libraries.
but in order to run npm run start, I needed to use the latest nodejs v12.14.0
Anyway after these changes, I could finally run hello world of https://rustwasm.github.io/book/game-of-life/hello-world.html
What a wastE of time!
This is a typical annoiance of using teh cuttuing edge of codes.
Rust's Webassembly looks pretty new.
Subscribe to:
Post Comments (Atom)
Recursive Matrix and the parallel matrix multiplication using crossbeam and generic constant
This was planned project I posted before. Basically in order to evaluate Rust's claim for zero cost abstraction and the effectiveness o...
-
Puppeteer is a powerful tool to control web application at server side using headless chromium. This is mainly used for automated testing,...
-
There is an interesting article demonstrating how to write channel using Rust: Multithreading in Rust with MPSC (Multi-Producer, Single ...
-
I found Rust is not yet officially supporting Multi Producer Multi Consumer channel yet. It only supports mpsc lib i.e, Multi Producer Sin...
No comments:
Post a Comment