vote up 5 vote down star
5

I am looking for recommendations for a browser based javascript sandbox to practice some proof of concept code.

flag

8 Answers

vote up 25 vote down check

Use Firebug for Firefox. It has a JavaScript console where you can enter JavaScript plus a whole set of useful tools

Setting a breakpoint on a javascript function

link|flag
I highly recommend firebug. A great tool for any web developer. – Jim Petkus Jan 21 at 1:53
While you're at it, get FireUnit for Firebug. – Alan Jan 21 at 3:00
vote up 6 vote down

It's not very well known, but the web development tools in the latest nightly builds of Webkit are incredible, exceeding Firebug even in terms of usefulness and speed.

Builds for Mac and Windows can be downloaded from http://nightly.webkit.org/

Once you've got it loaded, go to Develop -> Show Web Inspector

From there you can debug scripts on the current page, explore the DOM, and get access to a truly kick ass javascript console, with term completion and a great UI for examining objects.

link|flag
I've always found Firebug to be superior. For example, if you do something like console.log(myObject) then it will print out the object as a link which shows you all its methods and attributes. Chrome just gives a string representation. Please correct me if I'm wrong... – nickf Jan 21 at 3:25
I'm not sure what Chrome does, but the webkit nightly behaves like Firebug: img516.imageshack.us/img516/6121/… – Peter Burns Jan 22 at 5:36
vote up 3 vote down

Whenever I've had to test some browser based javascript, I find the simplest solution is the best: create a simple HTML page that calls my javascript and load it in IE (or Firefox, or whatever).

link|flag
vote up 3 vote down

jsbin is pretty good, especially if you're trying to show some code to other people. Its major downside IMO is that because it runs your code in an iframe (i think), calls to console.log don't appear anywhere.

link|flag
I had trouble getting jsbin to work at all, but that was on the unstable chrome release. – EndangeredMassa Jan 21 at 1:24
vote up 2 vote down

I'm very fond of the JavaScript Shell, a lightweight bookmarklet that opens up a Firefox window that has full access to the current page's DOM.

Firebug is great, of course, but sometimes I need something a little more single-purpose.

link|flag
vote up 1 vote down

http://eloquentjavascript.net/

This is a tutorial, but each page of the tutorial has a browser based interactive "command line" in which to practice the examples. And each of the code samples has a button to automaticaly push the code into the interactive evaluator.

link|flag
vote up 0 vote down

I also found this page -- any feedback on it?

http://www.headfirstlabs.com/books/hfjs/hfjs_handson.php

link|flag
vote up 0 vote down

For online sandboxes for several different languages, platforms, and open source applications, see this similar SO question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.