Why do I need to use React with Meteor?

I am new to both Meteor and React, and I have not seen the importance of using one with the other.

What features does React provide that does not exist in Meteor?

+4
source share
1 answer

React takes a different approach to building and managing user interface interfaces.

For example, Blaze uses jQuery to directly control the DOM, while response.js works with a virtual DOM (without binding), and when there is an update, it distinguishes between the actual and virtual DOMs and updates only the parts that are different to make the actual DOM reflects changes.

, (- -).

03.02.2016

, , , - . - , .

+7

All Articles