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.

Show HN: Radi.js is a tiny (3kB minified and gzipped) JavaScript framework

7 pointsby krapansabout 7 years ago

3 comments

kristianpabout 7 years ago
&quot;It doesn’t use any kind of diffing algorithm nor virtual dom which makes it really fast.&quot;<p>Aren&#x27;t Virtual doms there to improve speed by reducing unecessary writes to the DOM?
评论 #16542987 未加载
helbabout 7 years ago
Looks interesting, i&#x27;ll keep an eye on it. Author&#x27;s blogpost with more details (and a benchmark): <a href="https:&#x2F;&#x2F;medium.com&#x2F;@marcisbee&#x2F;how-i-built-super-fast-js-framework-faster-than-react-ea99f0d03150" rel="nofollow">https:&#x2F;&#x2F;medium.com&#x2F;@marcisbee&#x2F;how-i-built-super-fast-js-fram...</a>
dbanksdesignabout 7 years ago
I always thought this! No matter how fast the Virtual DOM and diffing is, at it&#x27;s core you are doing 2 writes. If you could just directly manipulate the DOM, that would always be faster. Really cool that someone put it into practice. I&#x27;ll try it out when I have some time.