最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

debugging - What is in your JavaScript development toolbox? - Stack Overflow

programmeradmin0浏览0评论

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:

  • JavaScript Shell from .html
  • Firefox Dom Inspector
  • Firebug
  • Greasemonkey
  • Stylish

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?

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:

  • JavaScript Shell from https://www.squarefree.com/bookmarklets/webdevel.html
  • Firefox Dom Inspector
  • Firebug
  • Greasemonkey
  • Stylish

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?

Share Improve this question edited Jun 8, 2013 at 13:46 Rob W 349k87 gold badges807 silver badges682 bronze badges asked Aug 29, 2008 at 15:41 Peter HoffmannPeter Hoffmann 58.7k15 gold badges77 silver badges59 bronze badges
Add a comment  | 

7 Answers 7

Reset to default 8

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

Firefox:

  • Firebug
  • Web Developer Toolbar

Internet Explorer:

  • IE Developer Toolbar
  • Fiddler
  • Visual Studio for JS Debugging

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!
  1. Web Developer Toolbar (Firefox Addon)
  2. Nikhil's Web Development Helper (IE Toolbar)

Firefox:

  • Firebug - Invaluable for debugging markup and code while testing ideas directly in the browser
    • Rainbow for Firebug - JavaScript syntax highlighting
    • Pixel Perfect - Overlay images on any page, make it match the design on every pixel
  • 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

  1. Firebug on Firefox
  2. IE Web Developer toolbar on IE
  3. JS Lint

A couple more::

  1. IE Explorer Toolbar
  2. Firefox Developer Toolbar

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!

发布评论

评论列表(0)

  1. 暂无评论