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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Modern web apps without JavaScript bundling or transpiling

9 点作者 heshiebee将近 4 年前

1 comment

galaxyLogic将近 4 年前
Sounds like great progress. One thing I wonder about is the idea of many small files instead of a single package, for the benefit of better caching. When you have an app how often do you update it? When you do it makes sense that users would need to download the whole new version of the app. Not too much of a performance penaalty I would think.<p>Whereas with many small modules, we are getting close to the situation like &quot;DLL Hell&quot; where every small piece is updated independently but which then might not work so great together. Isn&#x27;t this also the reason we have &#x27;package-lock.json&#x27; for npm? Ensure that the parts don&#x27;t independently &quot;move&quot; but only &quot;move&quot; as a single well-verified combination?