12

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:

I plan to use Venkman Javascript debugger as well as jsunit and js-lint.

For programming I'm stick with vim.

So what other tools do you use when developing JavaScript?

Rob W
351k87 gold badges811 silver badges683 bronze badges
asked Aug 29, 2008 at 15:41

7 Answers 7

8

I use both Firefox and IE for Web Development and a few add-ons in each:

Firefox:

Internet Explorer:

Rob W
351k87 gold badges811 silver badges683 bronze badges
answered Aug 29, 2008 at 15:54
Sign up to request clarification or add additional context in comments.

Comments

3

I sometimes use Emacs with Steve Yegge's js2-mode, evaluating code with Rhino & John Resig's env.js to load jQuery or Prototype in my standalone scripts.

This allows me to explore javascript, jQuery, and Prototype outside of a browser.

Example:

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!
answered Aug 29, 2008 at 16:00

Comments

1
answered Aug 29, 2008 at 15:49

Comments

1

Firefox:

  • Firebug - Invaluable for debugging markup and code while testing ideas directly in the browser
  • Web Developer Toolbar - Just about any tool you can think of
  • Firecookie - Manage your cookies
  • YSlow - Suggests how to boost the download performance

Windows-only:

  • Fiddler - A great HTTP proxy with debugging capabilities

Internet Explorer: - Web Developer Toolbar - Missing a few things but still very complete

answered Oct 22, 2008 at 19:32

Comments

1
  1. Firebug on Firefox
  2. IE Web Developer toolbar on IE
  3. JS Lint
answered Dec 31, 2008 at 9:55

Comments

0

A couple more::

  1. IE Explorer Toolbar
  2. Firefox Developer Toolbar
answered Aug 29, 2008 at 15:50

Comments

0

Best way to debug JavaScript in Internet Explorer is to use Visual Web Developer Express.

If you like a cross browser logging solution check out Firebug Lite!

answered Oct 23, 2008 at 10:49

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.