|
|
|
|
|
by saskurambo
3600 days ago
|
|
React is good for complex app desktop but not if you need performant and fast interface with 60 fps otherall in mobile.
Last virtual dom like snabbdom preact and inferno are really fast also on mobile.
And inferno and preact are compatible with react component.
Vue.js 2.0 use an intelligent mixin of reactive data graph dependency and virtual dom separating the static and dynamics parts of template.
Monkberry.js translate a template in pure javascript function with createElements and update nodes. Function that can be optimized from the jit |
|