If you work with React, or actually any framework that uses virtual dom, like vue, preact, inferno or whatever, or you are currently learning one of those frameworks - it will probably be interesting for you.
It is a Virtual DOM implementation separate from any framework. It's heavily inspired by Virtual DOM implementation from React. Great learning material for ones who want to understand React or Vue rendering process better.
Top comments (1)
I think we'll end up looking back on the virtual DOM as a bad idea in a few years. Running diffs isn't the most optimal or performant way to see what changes need to be made and can be done a lot better by linking DOM nodes directly with the data they use