(no title)
LordHeini | 1 year ago
React and many other SPA frameworks use an additional virtual DOM which gets mapped onto the real DOM. This used to be faster 10 years ago and allowed for a unified interface.
Any addon manipulating the DOM forces the virtual DOM to go out of sync thus crashing the app.
As shown be the likes of Svelte, the virtual DOM is just legacy modern browsers are fast enough to get by without.
whizzter|1 year ago
Actually it seems they got hit also, https://github.com/sveltejs/svelte/issues/15090
jtsiskin|1 year ago