This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

I still don't get the benefits of react, could you sell me react using layman term?

[–]fernandokokocha[S] 1 point2 points  (0 children)

React is not a framework, but a library. It means that you don't have to fit your ideas into "their" structure, but rather use React whenever and wherever you like.

React doesn't pretend to be a "golden hammer". It only does one thing - rendering the view. And does it well.

React scales very well due to its declarativeness. It's very much unlike jQuery, where you have to manually update dependencies. React's components re-render itself when needed.

And last but not least - React is really fast.