-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What magic is under the hood instead of virtual-dom? #19
Comments
Why do you need Virtual DOM? |
Hi, I'm going to write an article about how Monkberry works in next month. Will explain all there. Short answer is what templates compiled from this: <div>
...
<h1>{{ title }}</h1>
...
</div> To something like this: function (state) {
h1.textContent = state.title;
} And some king of "virtual dom" used on top/component level. |
@Elfet did you complete your article? Wanna read :) |
@fliptheweb i'm always gonna to, but can not find time now :( |
@antonmedv did you finish the article? I'm really want to know the keys of monkberry. |
@lijinpeng7364 nope, sorry. A lot of work) |
@antonmedv ok, hope someday you can finish it. |
How the engine detects what DOM should be changed on update without virtual-dom?
The text was updated successfully, but these errors were encountered: