Lately one of my coworkers started refactoring some JS using inspiration from John Resig advice (http://ejohn.org/blog/simple-javascript-inheritance/).
Until this, we were writing plain old js.<p>The code now is more structured, clean, and obviously better.<p>My coworker is a super-great programmer, I personally respect him very much both humanly and professionaly, but this whole refactoring has made me thinking about one thing, and that is: IDE Compliance.<p>We are using an IDE (netbeans in this case) to develop our app, but I found that if we write JS this way the IDE won't give autocomplete suggestions decently.
So, while we get all the beauty of OOP, we don't get to know what are the available methods of an object unless we "remember" them.<p>Personally I think this can and should be improved because if another person comes onto the team he/her wouldn't know how to interact with our "framework" unless he starts digging into the code.<p>What was your experience on this?
Is there a way we can write clean OO JS code that is also indexable from an IDE?
I'd personally suggest using a better IDE. It may be "expensive", but I've bought personal licenses for IntelliJ products a while ago, and renew yearly. It's a very small price to pay for productivity. Not to mention, they're truly cross platform, and I can go from working on my Windows box at work, to working on my Linux or OSX box at home, all in the same exact IDE.<p>WebStorm seems pretty good at JavaScript prototyping/inheritance and auto-complete.
The less new JS code we write the better for humanity... :)<p>Why don't you try TypeScript? Can be easily integrated with the existing JS codebase.