Hacker News new | ask | show | jobs
by sunng 3449 days ago
Here is an example that using Rust-native library for web development: https://github.com/tcr/rust-todomvc

Also I forked it to use handlebars: https://github.com/sunng87/rust-todomvc

Using asmjs, the compiled js file is about 20MB and can be slow in browser. While wasm32 one is just ~500KB.

1 comments

Can wasm be chunked up and loaded on demand via AJAX, like JS?