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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Venkman: JavaScript Debugger from Mozilla

15 点作者 mcxx大约 16 年前

5 条评论

ynniv大约 16 年前
I'm often disappointed that Venkman is implemented as an in-process debugger. Doing so requires manipulating the main thread's event queue when you're paused (so that Venkman itself responds), allowing new event handlers to fire and generally mucking up complicated situations. For debugging simple web pages, Firebug has the same problems but a cleaner interface and fewer bugs. For heavier XUL development, Venkman is the option option, but I would much prefer an out of process debugger capable of debugging threads (which I think is a js/jsd limitation).
mpk大约 16 年前
For small stuff I'll just use Firebug, but for the heavy lifting it's still Venkman for me. You can debug chrome with it, set breakpoints, read the stack, set it to trigger on errors or exceptions, etc.
pmjordan大约 16 年前
Has anyone here used this in anger? I'd be interested to know if it works better than, say, Firebug? The latter tends to have problems with dynamically loaded iframes (like those used with Google Gadgets), and will often miss breakpoints in event handlers. If Venkman were better in this respect, that'd be fantastic.
评论 #550787 未加载
评论 #550989 未加载
评论 #550789 未加载
midnightmonster大约 16 年前
Chromebug is Firebug for XUL applications and extensions. <a href="http://getfirebug.com/extensions/index.html#chromebug" rel="nofollow">http://getfirebug.com/extensions/index.html#chromebug</a>
bogdank大约 16 年前
IE8 has not a bad js debugger. At least it is stopping for me on breakpoints and is more stable than firebug. In Beta it was crashing/hanging, but it seams they improved something.