In ReactJS, would Global State, its immutability and Duplicated DOM (VirtualDOM) approach become a huge issue? I am talking about single page apps with many screens, specially on amount of memory needed to perform well on load, when rendering is done on server?
Morgan Cheng
Engineering Ninjia
React.js is not designed for server-side-rendering, even though you can do it. Think twice before you apply it in production.
For browser side, I haven't heard any report that the memory pressure is an issue.