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.

Ask HN: Is React 16 (“Fiber”) faster than VUE.js now?

1 pointsby orenmizrover 7 years ago
I love Vue. I fits my brain perfectly! but after reading about react&#x27;s new rendering engine and reconciler - i wonder about application speed between both.<p>Are there any verifiable benchmarks out there? what your 2 cents ?

3 comments

acemarkeover 7 years ago
I&#x27;ll copy a recent comment I made on Reddit [0]:<p>Fiber is ultimately not about raw rendering speed. The initial improvement is about splitting up the rendering process into bite-size chunks so that the determination of what does need to change doesn&#x27;t block the main thread. The rewrite of the internals also made the codebase more maintainable, and gave them a chance to implement often-requested features like returning strings or arrays from render(), as well as implementing error boundaries.<p>Beyond that, the React team is still experimenting with ideas to better understand what &quot;async rendering&quot; might actually mean, and how that might be useful. I know Andrew Clark showed off a strawman syntax called componentDidBlock that would allow a component to indicate it shouldn&#x27;t render at all until a promise resolves. The &quot;priority levels&quot; aspect will also come into play later, so they can determine that updates from things like user input events ought to be processed first before updates from network requests.<p>[0] <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;javascript&#x2F;comments&#x2F;77zhy4&#x2F;build_a_mini_react_fiber&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;javascript&#x2F;comments&#x2F;77zhy4&#x2F;build_a_...</a>
mtmailover 7 years ago
Welcome to HN. Please read the guidelines and other user&#x27;s questions to get a sense of the <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;ask" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;ask</a> format. For examples questions should start with &#x27;Ask HN&#x27; and there are no hashtags of any kind on HN.
评论 #15570023 未加载
dvdgsngover 7 years ago
Not sure about &quot;verifiable benchmarks&quot;, but you could have a look at <a href="https:&#x2F;&#x2F;mathieuancelin.github.io&#x2F;js-repaint-perfs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mathieuancelin.github.io&#x2F;js-repaint-perfs&#x2F;</a>