DEV Community

Discussion on: Rust for front-end developers

Collapse
 
molamk profile image
molamk

Rust responds to requests nearly 100 times faster on average than Node, and you won’t run into the compile time errors that JavaScript apps are usually prone to.

Correct me if I'm wrong, but did you mean run-time errors instead of compile time?

The Rust compiler does a LOT more checks than JavaScript in the compilation step. This would yield more errors at compile time for Rust, but fewer run-time errors.

Great article btw!