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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How does Roam Research “call home”?

1 点作者 shibel大约 5 年前
I’ve been trying to figure out how Roam Research (https:&#x2F;&#x2F;roamresearch.com&#x2F;) sends data back and forth from and to the server.<p>The app seems very responsive, and when I add&#x2F;omit&#x2F;edit objects, there’s nothing under the Network tab in Chrome’s dev tools.<p>How is RR doing this? I noticed IndexedDB instances but deleting them didn’t seem to affect anything.

3 条评论

m11a大约 5 年前
They&#x27;re using websockets I believe.<p>Look in the network tab for .ws (hosted on Firebase). You can inspect the messages using Chrome. It sends updates for every change to a block you make.
评论 #22969158 未加载
Nextgrid大约 5 年前
A websocket? I&#x27;m assuming that once the websocket is open, any future traffic inside wouldn&#x27;t be logged in the developer tools?
dylz大约 5 年前
Websockets probably. The built JS contains references to both WebSocket and Firebase.