Hacker News new | ask | show | jobs
by smnthermes 2037 days ago
> or where you're writing all of your core logic in C/Rust but you want to use HTML/CSS for your interface

DOM is highly intertwined with JavaScript, so that wouldn't be possible.

1 comments

This is clearly not true, since the DOM interface is implemented in something like C++ (or Rust, in this case) in browser engines, so you could write your logic in the same language, or even write a binding for any language you like.
Last time I looked in to it this is true for at least Servo though. DOM objects use the SpiderMonkey GC for memory management since that makes them easier to work with from JS and means they didn't have to write a separate graph manager or GC. DOM hierarchy is worst case scenario for the Rust borrow checker, they don't work well together at all.