3

I want to use some IDE which allows me to change the javaScript code on the fly and run it in browser. I don't think I can do this in Firebug.

Which IDE/software should I use for JavaScript development?

Hussein
  • 42,480
  • 25
  • 113
  • 143
user5858
  • 1,082
  • 4
  • 39
  • 79

2 Answers2

5

Yes you can do this in firebug console. Click on console and you can start typing. You can click on the bottom right red icon to expand the typing area.

Hussein
  • 42,480
  • 25
  • 113
  • 143
  • Isn't there any other ide which I can use for javascript development? I mean even Eclipse is there but not as good as Firebug. Isn't there any more tools? – user5858 Mar 04 '11 at 09:55
  • 1
    Firebug or chrome console would be the number 1 choices. Used by most developers. It can't get any more convenient. You see it as it's done. You don't need an IDE for this. – Hussein Mar 04 '11 at 10:04
  • That's a very short answer. See more details bellow :) – Radagast the Brown Mar 12 '11 at 08:09
0

The Sublime Web Inspector looks like it could do what your after.

It supports:

  • Breakpoints
  • Console
  • Interactivity
  • Debugger
  • Evaluating on call frame
  • Live Reload
Malachi
  • 33,142
  • 18
  • 63
  • 96
  • Seem like a nice alternative...only it also seem to be an abandoned project and very difficult to install. (No instructions!) – not2qubit Jan 16 '14 at 01:13