-1

I was searching for software that would help me with JavaScript development (I'm a beginner). I learned most of what I know from Codecademy where they have nifty and very use-full console, I was looking for something similar but that it would be possible to install on my mac (or accessible online).

I guess main usage of such software should be ability to return, print etc.. things of javascript and show error messages to help with debugging purposes. If you have any good suggestions please share it.

Kara
  • 6,115
  • 16
  • 50
  • 57
Ilja
  • 44,142
  • 92
  • 275
  • 498
  • All of this is available in your browser : https://developers.google.com/chrome-developer-tools/ – Denys Séguret Jan 13 '13 at 17:58
  • Chrome Console (built in, look for Developer Tools in the menu) and Firefox's Firebug are both the preeminent Javascript debug and developer toolkits. Right-click and Inspect element, there you go. There's also Venkmen and some others. Fiddler I think also helps. http://jsfiddle.net also let's you do handy code practice/development in a handy direct input interface. Just look around. – Jared Farrish Jan 13 '13 at 18:01
  • I use the Firefox Firebug addon. – Popnoodles Jan 13 '13 at 18:01

2 Answers2

2

It might be funny, but I always use chrome console and firebug for such testing cases. i think you won't find anything faster.

As for a software try sublime it is very user friendly.

Alex
  • 5,971
  • 11
  • 42
  • 80
0

Consider using JSLint which is a code quality analysis tool that helps check any errors or styling issues you may have. You don't have to make all the nit-picky changes it talks about (and you can filter some things) but it definitely helps out. Just post your Javascript there.

I would also consider putting use strict; at the top of your Javascript because it helps throw more errors which can be useful when starting out. Here's an SO question about it:

What does "use strict" do in JavaScript, and what is the reasoning behind it?

As other people have said, Firebug is a great extension for Firefox and Chrome I think the standard console embedded in the browser is sufficient.

Hope this helps!

Community
  • 1
  • 1
aug
  • 11,138
  • 9
  • 72
  • 93