Sadly, it seems like nobody is considering the best optimization: make DOM operations fast. I think if you could batch DOM operations together you could avoid a lot of wasted relayout and duplicate calculations.
You can't parallelize DOM updates. All has to happen in the main loop. This is not gonna change for the web as it is today.
https://developer.apple.com/documentation/uikit/uiview/16226...