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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What's the best way to read a code base?

3 点作者 akc将近 9 年前
Do you do breadth-first, depth-first, or something else entirely?

1 comment

cjbprime将近 9 年前
I like to try to instrument every function call (or some higher level equivalent) that gets called, then perform some basic operation that I&#x27;m interested in with the code, and just start reading important-looking code from the start of the timeline to the end.<p>Chrome has a nice timeline view, and it now works with Node as a backend instead of the browser, so looking at a timeline chart would be a nice way to browse a new-to-me large JS codebase.