Maybe you don't need Rust and WASM to speed up your JS
1–10 of 186 posts
Re: Maybe you don't need Rust and WASM to speed up your JS
#2Re: Maybe you don't need Rust and WASM to speed up your JS
#3Re: Maybe you don't need Rust and WASM to speed up your JS
#4(And if you're shipping so much JavaScript to your site users that you need to "minify", maybe you're doing it wrong.)
Re: Maybe you don't need Rust and WASM to speed up your JS
#5How did we end up in wasting so much time on trivialities?
Re: Maybe you don't need Rust and WASM to speed up your JS
#6I'm excited about compiling to WASM not for performance but for correctness. Typescript is better than nothing but it really can't compete with the safety and ease you get from a language with a really good type system.
Re: Maybe you don't need Rust and WASM to speed up your JS
#7I'm excited about compiling to WASM not for performance but for correctness. Typescript is better than nothing but it really can't compete with the safety and ease you get from a language with a really good type system.
What about BuckleScript?
Re: Maybe you don't need Rust and WASM to speed up your JS
#8Source maps are a debug tool. Why does the performance matter? (And if you're shipping so much JavaScript to your site users that you need to "minify", maybe you're doing it wrong.)
If the source map decoder is slow, then the debugger feels slow.
Re: Maybe you don't need Rust and WASM to speed up your JS
#9As far as WASM is concerned I'm more excited about the possibility to run any programming language on the web than the raw performance gains. So far it is still year(s) away from this goal(i.e. lack of web APIs/DOM access makes it useless for web dev).
Re: Maybe you don't need Rust and WASM to speed up your JS
#10Source maps are a debug tool. Why does the performance matter? (And if you're shipping so much JavaScript to your site users that you need to "minify", maybe you're doing it wrong.)
Your statement in brackets seems very "those damn kids"-ish. You need to "minify" your JS files even if you're shipping a small amount of JS, because loading performance matters and JS minifies very well.