What would be a good browser-independent JavaScript programming environment? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:43:30Zhttp://stackoverflow.com/feeds/question/840050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment1What would be a good browser-independent JavaScript programming environment?cfricke2009-05-08T14:27:41Z2009-05-10T10:12:12Z
<p>My team's current project involves re-writing retrieval libraries in JavaScript. We are basically looking for a setup which enables us to apply test-driven development methods.</p>
<p>So far we plan to use Vim to write the code, no fancy IDE. For generating output we would use Spidermonkey's shell environment. JSLint could serve as a moderate syntax checking tool.</p>
<p>The essential question remains: How do you develop JavaScript (browser-independent) programs?
If we are already on the right track, then maybe you can supply us with a few tips and tricks.</p>
http://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment/840074#8400741Answer by Zack for What would be a good browser-independent JavaScript programming environment?Zack2009-05-08T14:31:43Z2009-05-08T15:06:15Z<p>If you have the chance to rewrite it all, you might consider jQuery. </p>
<p>It's essentially browser agnostic. Or at least it requires much less object sniffing than plain javascript.</p>
http://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment/840094#8400941Answer by Raphael Montanaro for What would be a good browser-independent JavaScript programming environment?Raphael Montanaro2009-05-08T14:35:52Z2009-05-08T14:35:52Z<p>Only testing you'll make your JavaScript code browser-independent.</p>
http://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment/840187#8401872Answer by joeytwiddle for What would be a good browser-independent JavaScript programming environment?joeytwiddle2009-05-08T14:53:40Z2009-05-08T14:53:40Z<p>You can test your code in Spidermonkey or <a href="http://www.mozilla.org/rhino/" rel="nofollow">Rhino</a> (an older JS interpreter in Java), but you won't really know which browsers it works in until you test your scripts in them!</p>
<p>I agree with the earlier poster, using a browser-independent library like jQuery is probably a good idea.</p>
<p>I have not used Spidermonkey, but I know Rhino has a good debugging GUI, allowing the usual: setting breakpoints, watches, and stepping through code.</p>
http://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment/840639#8406390Answer by Thevs for What would be a good browser-independent JavaScript programming environment?Thevs2009-05-08T16:19:09Z2009-05-08T16:19:09Z<p>Yes,I'm using the same environment to develop standalone JS apps (vim + SpiderMonkey). I only would add up, that I've made small in-browser IDE for reading/writing/launching JS scripts on the server-side. Sometimes it's very helpful. Also, I'm looking for using <a href="http://www.wxjavascript.net/" rel="nofollow">WXJavascript</a> project, which seems to be very promising.</p>
http://stackoverflow.com/questions/840050/what-would-be-a-good-browser-independent-javascript-programming-environment/845047#845047-1Answer by cfricke for What would be a good browser-independent JavaScript programming environment?cfricke2009-05-10T10:10:29Z2009-05-10T10:10:29Z<p>Thank you very much for the input. We will probably start developing with Vim + Spidermonkey's shell utility and see where it goes from there.</p>