“the Facebook codebase has over 20,000 React components, and that’s not even counting React Native”Tagged: React, React v15.0, Frontend
“React 15 no longer emits extra nodes around the text, making the DOM output much cleaner.”Tagged: React, React v15.0
“We’re switching to major versions to indicate that we have been using React in production for a long time.”Tagged: React, React v15.0
“We are now using document.createElement instead of setting innerHTML when mounting components. This allows us to get rid of the data-reactid attribute on every node and make the DOM lighter. Using document.createElement is also faster in modern browsers and fixes a number of edge cases related to…”Tagged: React
“Things that are traditionally sync don’t have to “feel” sync. Things that are traditionally async don’t have to “feel” async. Be intentional and bridge the gap when you need.”Tagged: React, Programming
“Interesting thing about React 16 SSR that is easy to miss. No more checksums means it can boot up from HTML that wasn’t generated by React.”Tagged: React