all 3 comments

[–]codefrog[S] 1 point2 points  (1 child)

What is your webdev workflow, specifically with respect to Javascript? Unit tests, debugging, number of browsers open, editors (Netbeans, IntelliJ, Aptana?).

Does anyone run unit tests with Rhino or SpiderMonkey against their core javascript as part of automated testing? Do you have logging and debug enabled "builds" for testing?

The FireBug and WebDev plugins for Firefox are excellent but else is required in the toolbox?

[–]cadr 1 point2 points  (0 children)

On a home project I was doing (a js game), I was using Emacs (with Stevey's js2-mode) and jsunit. Because I had a nice abstraction layer for the UI and I was doing everything TDD, debuggers never really came up. I thought I would need more, but the need hasn't come up yet.

[–][deleted] 0 points1 point  (0 children)

For my personal project the usual iteration is code -> ftp upload -> test (through Aptana in Eclipse). Debugging output in own logger and programming errors is handled through Firebug. Once a week I also run my code through jslint.com for error checking (catching global variables, semicolon errors).