Best Debugging Tools for JavaScript/xulrunner Development - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:17:19Z http://stackoverflow.com/feeds/question/4392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development 5 Best Debugging Tools for JavaScript/xulrunner Development pc1oad1etter 2008-08-07T04:41:24Z 2009-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#4395 2 Answer by Dave Ward for Best Debugging Tools for JavaScript/xulrunner Development Dave Ward 2008-08-07T04:47:45Z 2008-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#4397 0 Answer by secretGeek for Best Debugging Tools for JavaScript/xulrunner Development secretGeek 2008-08-07T04:48:54Z 2008-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#4398 0 Answer by hemil for Best Debugging Tools for JavaScript/xulrunner Development hemil 2008-08-07T04:48:58Z 2008-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#4402 0 Answer by tlrobinson for Best Debugging Tools for JavaScript/xulrunner Development tlrobinson 2008-08-07T04:53:34Z 2008-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#7856 5 Answer by Nickolay for Best Debugging Tools for JavaScript/xulrunner Development Nickolay 2008-08-11T15:22:58Z 2008-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#8541 0 Answer by pc1oad1etter for Best Debugging Tools for JavaScript/xulrunner Development pc1oad1etter 2008-08-12T06:13:01Z 2008-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#22526 0 Answer by ScottKoon for Best Debugging Tools for JavaScript/xulrunner Development ScottKoon 2008-08-22T14:41:11Z 2008-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#68024 0 Answer by Joel Anair for Best Debugging Tools for JavaScript/xulrunner Development Joel Anair 2008-09-15T23:48:18Z 2008-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#464472 0 Answer by Toby Mills for Best Debugging Tools for JavaScript/xulrunner Development Toby Mills 2009-01-21T08:47:45Z 2009-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#651342 0 Answer by Sergi for Best Debugging Tools for JavaScript/xulrunner Development Sergi 2009-03-16T17:21:33Z 2009-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>