TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Venkman: JavaScript Debugger from Mozilla

15 pointsby mcxxabout 16 years ago

5 comments

ynnivabout 16 years ago
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).
mpkabout 16 years ago
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.
pmjordanabout 16 years ago
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 未加载
midnightmonsterabout 16 years ago
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>
bogdankabout 16 years ago
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.