What is in your JavaScript development toolbox? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T13:46:37Zhttp://stackoverflow.com/feeds/question/34476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox5What is in your JavaScript development toolbox?Peter Hoffmann2008-08-29T15:41:45Z2008-12-31T09:55:35Z
<p>I have to do some JavaScript in the future, so it is time to update my toolbox. Right now I use Firefox with some addons:</p>
<ul>
<li>JavaScript Shell from https://www.squarefree.com/bookmarklets/webdevel.html</li>
<li>Firefox Dom Inspector</li>
<li>Firebug</li>
<li>Greasemonkey</li>
<li>Stylish</li>
</ul>
<p>I plan to use <a href="http://www.hacksrus.com/~ginda/venkman/" rel="nofollow">Venkman Javascript debugger</a> as well as <a href="http://www.jsunit.net/" rel="nofollow">jsunit</a> and <a href="http://www.crockford.com/javascript/lint.html" rel="nofollow">js-lint</a>.</p>
<p>For programming I'm stick with vim.</p>
<p>So what other tools do you use when developing JavaScript?</p>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/34492#344921Answer by Sameer Alibhai for What is in your JavaScript development toolbox?Sameer Alibhai2008-08-29T15:49:08Z2008-08-29T15:49:08Z<ol>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer Toolbar (Firefox Addon)</a></li>
<li><a href="http://projects.nikhilk.net/WebDevHelper/" rel="nofollow">Nikhil's Web Development Helper (IE Toolbar)</a></li>
</ol>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/34496#344960Answer by Greg Ogle for What is in your JavaScript development toolbox?Greg Ogle2008-08-29T15:50:17Z2008-08-29T15:50:17Z<p>A couple more::</p>
<ol>
<li>IE Explorer Toolbar </li>
<li>Firefox Developer Toolbar </li>
</ol>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/34504#345046Answer by Jesse Dearing for What is in your JavaScript development toolbox?Jesse Dearing2008-08-29T15:54:11Z2008-08-29T15:54:11Z<p>I use both Firefox and IE for Web Development and a few add-ons in each:</p>
<p><strong>Firefox:</strong></p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer Toolbar</a></li>
</ul>
<p><strong>Internet Explorer:</strong></p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en" rel="nofollow">IE Developer Toolbar</a></li>
<li><a href="http://www.fiddlertool.com/" rel="nofollow">Fiddler</a></li>
<li>Visual Studio for JS Debugging</li>
</ul>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/34525#345252Answer by Sébastien RoccaSerra for What is in your JavaScript development toolbox?Sébastien RoccaSerra2008-08-29T16:00:47Z2008-08-29T16:08:56Z<p>I sometimes use Emacs with Steve Yegge's <a href="http://code.google.com/p/js2-mode/" rel="nofollow">js2-mode</a>, evaluating code with <a href="http://www.mozilla.org/rhino/" rel="nofollow">Rhino</a> & John Resig's <a href="http://ejohn.org/blog/bringing-the-browser-to-the-server/" rel="nofollow">env.js</a> to load jQuery or Prototype in my standalone scripts.</p>
<p>This allows me to explore javascript, jQuery, and Prototype outside of a browser.</p>
<p>Example:</p>
<pre><code>var window;
load("Library/env.js");
window.location = 'index.html'; // Load the page 'index.html'
print($('aForm').id); // Play with the Dom in a standalone script!
</code></pre>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/227219#2272190Answer by TwoD for What is in your JavaScript development toolbox?TwoD2008-10-22T19:32:04Z2008-10-22T19:32:04Z<p><strong>Firefox:</strong></p>
<ul>
<li><a href="http://getfirebug.com/" rel="nofollow">Firebug</a> - Invaluable for debugging markup and code while testing ideas directly in the browser
<ul>
<li><a href="http://xrefresh.com/rainbow" rel="nofollow">Rainbow for Firebug</a> - JavaScript syntax highlighting</li>
<li><a href="http://www.pixelperfectplugin.com/" rel="nofollow">Pixel Perfect</a> - Overlay images on any page, make it match the design on every pixel</li>
</ul></li>
<li><a href="http://chrispederick.com/work/web-developer/" rel="nofollow">Web Developer Toolbar</a> - Just about any tool you can think of</li>
<li><a href="http://www.softwareishard.com/blog/firecookie/" rel="nofollow">Firecookie</a> - Manage your cookies</li>
<li><a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> - Suggests how to boost the download performance</li>
</ul>
<p>Windows-only:</p>
<ul>
<li><a href="http://www.fiddlertool.com/" rel="nofollow">Fiddler</a> - A great HTTP proxy with debugging capabilities</li>
</ul>
<p><strong>Internet Explorer:</strong>
- <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en" rel="nofollow">Web Developer Toolbar</a> - Missing a few things but still very complete</p>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/229305#2293050Answer by aemkei for What is in your JavaScript development toolbox?aemkei2008-10-23T10:49:52Z2008-10-23T10:49:52Z<p>Best way to debug JavaScript in <strong>Internet Explorer</strong> is to use <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">Visual Web Developer Express</a>.</p>
<p>If you like a <strong>cross browser</strong> logging solution check out <a href="http://getfirebug.com/lite.html" rel="nofollow">Firebug Lite</a>!</p>
http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox/402628#4026281Answer by Cyril Gupta for What is in your JavaScript development toolbox?Cyril Gupta2008-12-31T09:55:35Z2008-12-31T09:55:35Z<ol>
<li>Firebug on Firefox</li>
<li>IE Web Developer toolbar on IE</li>
<li>JS Lint</li>
</ol>