6 ms·
They say it's "React-like", but afaik it doesn't do the cool things with a virtual dom? What's cool about React is how it doesn't write to the DOM all the time,
by fdsary 12y ago
They say it's "React-like", but afaik it doesn't do the cool things with a virtual dom? What's cool about React is how it doesn't write to the DOM all the time, only when there is a diff. Does Riot do that? If not, thanks but it doesn't compete with React.
Also, does it render to string?
- thu 12y agoCheck the previous related submission (linked in this thread), there is the same comment as yours with answers.
- tipiirai 12y agoYup. In Riot the DOM is only updated when there is a diff. Server side support is coming so you can do "isomorphic" apps and render components on the HTML page as string. Current 2.0.1 does not support this feature.
- alexro 12y agoBeing able to render progressively to the response buffer would be great