I am new to using React for development.
Can someone list the advantages and disadvantages in using ReactJS. Are there any performance issues with using this library for large projects.
Advantages of using React:
What is not so good about React?
If react-native is really how it was described, react is going to become even bigger.
Performance wise, it is really good as it relies on a virtual-dom to know what is really changing in your UI and will re-render only what has really changed. It does have trouble with very large, slightly changing, lists of children (2000 <li>
test), but can be optimized simply.
If you are not sure, just think about the big projects using React: instagram, hipchat, facebook chat and so on.
Some resources:
And probably one of my favorite blog post Why React is awesome?