An interactive guide to learning Rust
github.com
An interactive guide to learning Rust
1–10 of 55 posts
Re: An interactive guide to learning Rust
#2Re: An interactive guide to learning Rust
#3What's the relevance of learning Rust for someone into web development?
Re: An interactive guide to learning Rust
#4What's the relevance of learning Rust for someone into web development?
Re: An interactive guide to learning Rust
#5Re: An interactive guide to learning Rust
#6Earlier quoted context omitted.
rust compiles to web assembly
What kinds of things could you do with web assembly that you can’t do in native JavaScript? I know very little about web development.
Re: An interactive guide to learning Rust
#7Earlier quoted context omitted.
rust compiles to web assembly
What kinds of things could you do with web assembly that you can’t do in native JavaScript? I know very little about web development.
Re: An interactive guide to learning Rust
#8Earlier quoted context omitted.
rust compiles to web assembly
What kinds of things could you do with web assembly that you can’t do in native JavaScript? I know very little about web development.
You'd still use JS for UI stuff, but WASM lets you run algorithmic or CPU intensive tasks like e.g. games, video decoding, image resizing, AI, or anything else you need fast performance for client-side.
Re: An interactive guide to learning Rust
#9Earlier quoted context omitted.
What kinds of things could you do with web assembly that you can’t do in native JavaScript? I know very little about web development.
It gets you very close to native performance while running in your browser and browser sandbox. That's mind-blowing. You'd still use JS for UI stuff, but WASM lets you run algorithmic or CPU intensive tasks like e.g. games, video decoding, image resizing, AI, or anything else you need fast performance for client-side.
Re: An interactive guide to learning Rust
#10What's the relevance of learning Rust for someone into web development?
As a web developer, you can write servers that take orders of magnitude less space, memory, and CPU than a similar JS server, without having to deal with the madness that is first-time C development.