|
|
|
|
|
by christiansakai
1863 days ago
|
|
I think it is a disadvantage to write Rust on the frontend. Frontend code moves too much and quick prototyping/iteration is more important than memory control. As for typing, just use TypeScript. It is really good enough already. |
|
It's easy to run into untyped (or partially typed) dependencies (a massive pain to write) or in internal code which uses any/unknown somewhere (causing typing holes which allow for whatever inputs).
I love types but I can't trust TypeScript types to be valid, I've been bit too many times.
Rust (or any other really typed language) would be great if the solutions are mature enough. It's not just for memory control.