Best Debugging Tools for JavaScript/xulrunner Development - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:17:19Zhttp://stackoverflow.com/feeds/question/4392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development5Best Debugging Tools for JavaScript/xulrunner Developmentpc1oad1etter2008-08-07T04:41:24Z2009-03-16T17:21:33Z
<p>In the past few months I began my first serious JavaScript development, as I began developing XUL applications. I use Notepad++ as my editor, but I was pretty appalled to find (as far as I can tell) that Venkman/Javascript Debugger is <strong>the</strong> tool for debugging. It seems like a poor replacement to Visual Studio for .Net languages.</p>
<p>Am I missing something? What are the best tools and best practices for JavaScript development? Is there some killer IDE/debugger/editor combination I'm not aware of? </p>
<p>It has to be easier than this, though.</p>
<p>I've heard some mention of Eclipse - is it a good choice here? I know very little about it.</p>
<p><em>Edit: Some of you have pointed out Firebug - I guess my problem was that I'm not actually using JavaScript for web development for which Firebug seems to be <strong>the tool</strong> -- instead I'm using it for XUL development in xulrunner. Which may simply be a weakness or <a href="http://starkravingfinkle.org/blog/2007/03/developing-with-xulrunner-devday-breakout/" rel="nofollow">immaturity of xulrunner</a>.</em></p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4395#43952Answer by Dave Ward for Best Debugging Tools for JavaScript/xulrunner DevelopmentDave Ward2008-08-07T04:47:45Z2008-08-07T04:47:45Z<p><a href="http://getfirebug.com" rel="nofollow">Firebug</a> is pretty well unbeatable for JavaScript development in a browser.</p>http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4397#43970Answer by secretGeek for Best Debugging Tools for JavaScript/xulrunner DevelopmentsecretGeek2008-08-07T04:48:54Z2008-08-07T04:48:54Z<p>'alert(x);' was the primary technique for too long.</p>
<p>FireBug, as others have said, is the way to go in FireFox debugging.</p>
<p>the <a href="http://www.aptana.com/" rel="nofollow">Aptana IDE</a> (based on eclipse) made a bit of a splash in the javascript IDE region recently.</p>
<p>Visual Studio 2008 contains much improved javascript debugging capabilities over the previous versions.</p>http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4398#43980Answer by hemil for Best Debugging Tools for JavaScript/xulrunner Developmenthemil2008-08-07T04:48:58Z2008-08-07T04:48:58Z<P>Try a combination of <STRONG>Script#</STRONG> (<A href="http:///" rel="nofollow">http://www.nikhilk.net/ScriptSharpIntro.aspx</A>)</P>
<P>and </P>
<P><STRONG>Firebug</STRONG> (<A href="http:///" rel="nofollow">http://getfirebug.com/</A>)</P>
<P>Cheers</P>
<P><A href="http:///" rel="nofollow">1</A>: </P>http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4402#44020Answer by tlrobinson for Best Debugging Tools for JavaScript/xulrunner Developmenttlrobinson2008-08-07T04:53:34Z2008-08-07T04:53:34Z<p>The nightly builds of WebKit have some great new debugging tools:</p>
<p><a href="http://nightly.webkit.org/" rel="nofollow">http://nightly.webkit.org/</a></p>http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/7856#78565Answer by Nickolay for Best Debugging Tools for JavaScript/xulrunner DevelopmentNickolay2008-08-11T15:22:58Z2008-08-11T15:22:58Z<p>Yeah, there's no decent debugger for XUL+JS development currently. But in my several-year experience I could do well without it. Here's how:</p>
<ul>
<li>Use logging. Either implement your own logging utilities, or a common one (e.g. https://wiki.mozilla.org/Labs/JS_Modules#Logging although I haven't used that one yet; see also <a href="http://developer.mozilla.org/en/docs/Using_JavaScript_code_modules" rel="nofollow">http://developer.mozilla.org/en/docs/Using_JavaScript_code_modules</a>)</li>
<li>When writing your code, use the JS Shell and the Live XUL Editor (from the <a href="https://addons.mozilla.org/en-US/firefox/addon/7434" rel="nofollow">Extension developer's extension</a>) along with the DOM inspector for prototyping.</li>
<li><a href="http://developer.mozilla.org/en/docs/Setting_up_extension_development_environment" rel="nofollow">Set up a profile for development</a>, then debug by tweaking the source code (adding logging and alert()s :) and reloading the affected window.</li>
<li>When possible, write unit tests using the <a href="http://developer.mozilla.org/en/docs/Mozilla_automated_testing" rel="nofollow">available frameworks</a> (they're not widely used with code outside the Mozilla tree currently)</li>
</ul>
<p>Hopefully Komodo (Mozilla-based editor/IDE, went open-source last year) will grow tools for debugging Mozilla code eventually.</p>
<p>Nickolay</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/8541#85410Answer by pc1oad1etter for Best Debugging Tools for JavaScript/xulrunner Developmentpc1oad1etter2008-08-12T06:13:01Z2008-08-12T06:13:01Z<p>@Nickolay, thanks for the good word on XUL development.</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/22526#225260Answer by ScottKoon for Best Debugging Tools for JavaScript/xulrunner DevelopmentScottKoon2008-08-22T14:41:11Z2008-08-22T14:41:11Z<p>I did a Google search for (Xul IDE) and the first hit was a listing on the Mozilla wiki of different XUL IDE.s I also found an app called <a href="http://www.redbacksystems.com/xulustudio/" rel="nofollow">XULU studio</a> in the results.</p>
<p><a href="https://wiki.mozilla.org/XUL:IDE" rel="nofollow">https://wiki.mozilla.org/XUL:IDE</a></p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/68024#680240Answer by Joel Anair for Best Debugging Tools for JavaScript/xulrunner DevelopmentJoel Anair2008-09-15T23:48:18Z2008-09-15T23:48:18Z<p>I do a lot of XUL/JS development, and I use a combination of <a href="http://www.eclipse.org" rel="nofollow">Eclipse</a> and <a href="http://www.interaktonline.com/products/eclipse/jseclipse/overview/" rel="nofollow">JSEclipse</a> for code editing and Venkman for debugging. It can be tricky to get Venkman working with your XUL app, but it's worth the effort. </p>
<p><a href="http://developer.mozilla.org/en/Debugging_a_XULRunner_Application" rel="nofollow">http://developer.mozilla.org/en/Debugging_a_XULRunner_Application</a> has the information on enabling Venkman in your app. Check it out; I assure you it's worth the time you spend on it.</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/464472#4644720Answer by Toby Mills for Best Debugging Tools for JavaScript/xulrunner DevelopmentToby Mills2009-01-21T08:47:45Z2009-01-21T08:47:45Z<p>If your using SQLite at all, especially for FireFox development then i would suggest the Firefox Addon "<a href="https://addons.mozilla.org/en-US/firefox/addon/5817" rel="nofollow">SQLite Manager</a>". Not only does it easily enable you to see profile informations stored by Firefox in user profiles but you can also open up other SQLite databases. Very useful.</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/651342#6513420Answer by Sergi for Best Debugging Tools for JavaScript/xulrunner DevelopmentSergi2009-03-16T17:21:33Z2009-03-16T17:21:33Z<p>As I said in another <a href="http://stackoverflow.com/questions/649927/debugging-javascript-repl-style/651217#651217">post</a>, to me the most convenient debugging tool for JavaScript is <a href="http://wiki.github.com/bard/mozrepl" rel="nofollow">Mozrepl</a>. It is a Firefox/XULRunner extension that accesses the browser/application instance using telnet, and you can observe and manipulate everything in your application remotely; even the framework itself.</p>
<p>It is incredibly useful as a debugger (on standalone XUL applications it is the only bearable way to do real debugging) and as a tool to play around and understand the guts of your application, it speeds up your XUL Javascript development time tenfold.</p>
<p>For an impressive demo of is possibilities, check out <a href="http://hyperstruct.net/files/mozrepl.swf" rel="nofollow">this video</a>.</p>