I've been having a crack at some of the problems over at / with JavaScript. I've been using a simple html page and running my code in script tags so I can log my results in the browsers' console. When experimenting with loops I sometimes cause the browser to crash.
Is there a better environment for me to do this kind of development?
I've been having a crack at some of the problems over at http://projecteuler/ with JavaScript. I've been using a simple html page and running my code in script tags so I can log my results in the browsers' console. When experimenting with loops I sometimes cause the browser to crash.
Is there a better environment for me to do this kind of development?
Share Improve this question edited Jun 12, 2010 at 0:48 Daniel Vassallo 345k72 gold badges512 silver badges446 bronze badges asked Jun 10, 2010 at 22:59 Dr. FrankensteinDr. Frankenstein 4,7047 gold badges34 silver badges48 bronze badges 2- 4 You want a magical "crash my browser without crashing my browser" test? How cool would that be? If only everyone had such a test, then perhaps browsers wouldn't crash. – S.Lott Commented Jun 10, 2010 at 23:03
- Think your first step might be not to write infinit loops! – griegs Commented Jun 10, 2010 at 23:09
6 Answers
Reset to default 5- a browser that has separate processes for each tab
- debugger breakpoints
- an if that breaks the loop if some threshold for time is hit
If you're running putationally expensive programs in your browser, you may want to look at using web workers. In short, they allow you to run code in a different thread which won't lock up the browser.
If you are just interested in running javascript programs as such, why don't you use something like node.js or even Rhino? That way you can easily log output without loosing it if it get into 'trouble'.
I can think of two ready possibilities:
1) Use a debugger that has breakpoints. Firebug is rather nice. Safari and Chrome also have some built-in debugging tools.
2) You could move your testing out of the browser using Mozilla Rhino and Env-js (see http://groups.google./group/envjs and http://github./thatcher/env-js )
All modern browsers (except Opera) should interrupt your script if it runs for more than 5-10 seconds (Source).
In Firefox you can even lower this threshold, if 10 seconds mean a too big punishment. Also note that this mechanism kicks in even when you run code from the Firebug console:
Stop Script on Firefox http://img819.imageshack.us/img819/9655/infloopsp.jpg
I think this feature alone should provide a pretty safe environment for these loopy experiments :)
There's nothing you can do to keep the browser from crashing other than fix bugs that cause the browser to crash.
You can at least mitigate the impact of the crash by using a browser like Chrome that generally segregates crashes in one tab from the others (so you lose only your own page), or just installing a separate browser specifically for testing.
In terms of keeping track of data that might have gone to the log, you might use a plugin like Firebug that has a built-in debugger so you can pause the script execution partway through and examine your variables, presumably before any crash occurs.