TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Isomorphic Apps Done Right with React Nexus

8 pointsby elierotenbergabout 10 years ago

2 comments

rajivtiruabout 10 years ago
React Nexus basically recursively traverses the react component tree and calls getNexusBindings on each component (recreating what react does natively with its lifecycle methods).<p>However, this incurs the cost of instantiating each component in the tree twice. Once for traversing asynchronously for data, again for React.renderToString or React.render<p>This would cause slower initial page loads for SPAs. Otherwise, very cool implementation.
glaciusNexusabout 10 years ago
Very Nice !