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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Why don't we stream websites like movies?

1 点作者 shanebellone超过 1 年前
Streaming data would allow for &quot;browser-based applications&quot; (e.g. single request&#x2F;refresh-less web applications).<p>Why is the standard approach still transactional?

3 条评论

edent超过 1 年前
Well, we can - that&#x27;s how VNC and other protocols work. But it has a few disadvantages.<p>The first is latency. When you scroll or click, you want the response to happen quickly. If you&#x27;re streaming the response you have to wait for at least one round trip before anything happens.<p>Secondly is bandwidth. For all the snark about bloated images and JS libraries, the web is extremely bandwidth light. A 1080p video is less so.<p>Thirdly, it was tried before. Opera Mini used to render pages before sending them out. It sort of worked for low powered devices but had a lot of quirks which I think gave the idea a bad name.<p>Finally, it would be impossible to block ads on a streamed website. See <a href="https:&#x2F;&#x2F;shkspr.mobi&#x2F;blog&#x2F;2023&#x2F;07&#x2F;the-future-of-the-web-is-vnc&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;shkspr.mobi&#x2F;blog&#x2F;2023&#x2F;07&#x2F;the-future-of-the-web-is-vn...</a>
评论 #37764284 未加载
eimrine超过 1 年前
Seems like you have described apps for snoop-phones. Those are a refresh-less, not device-agnostic browser apps with no tabs, no ability to change a font-size and limited ability to block ads.
评论 #37764385 未加载
warrenm超过 1 年前
Why do you want to &quot;stream&quot; a website?<p>An average website is a couple megs (maybe?)<p>What advantage would &quot;streaming&quot; that have over just loading it?<p>How would you account for AJAXy sites&#x2F;services?