TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

7 点作者 krapans大约 7 年前

3 条评论

kristianp大约 7 年前
&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 未加载
helb大约 7 年前
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>
dbanksdesign大约 7 年前
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.