vote up 4 vote down star

I was recently tasked to document a large JavaScript application I have been maintaining for some time. So I do have a good knowledge of the system.

But due the sheer size of the application, it will probably take a lot of time even with prior knowledge around the code and the source code itself in uncompressed form.

So I'm looking for tools that would help me explore classes and methods and their relationships in JavaScript and if possible, document them along the way, is there one available?

Something like object browser in VS would be nice, but any tools that help me get things done faster will do.

Thanks!

flag

4 Answers

vote up 5 vote down check

Firebug's DOM tab lets you browse the contents of the global window object, and you can inspect a particular object by entering inspect(whatever) in the command line.

You won't be able to use it to detect relationships unless an instance of one object holds an instance of a related object, but it's a start.

You can also use the Options menu on the DOM tab to restrict what's shown to user-defined functions and properties, which should help reduce clutter.

link|flag
vote up 1 vote down

Firebug + uneval(obj) is a simple trick that is often helpful.

link|flag
uneval is interesting... but I already have the source code in mint form you see... only there's not a single line of comment :-( – chakrit Sep 27 '08 at 7:44
vote up 1 vote down

Take a look at Aptana, they have an outline that can help you to determine what are the objects and somtetimes their relationship.

link|flag
vote up 0 vote down

We don't know if this JS application is designed to run in a Web browser...
If yes, as advised, Firebug (a Firefox extension) is excellent at debugging JS and exploring Dom.
On the IE side, you have some tools like IEDocMon, Web Accessibility Toolbar (it does more than its name) or Fiddler (unrelated to your question, but still a good tool to have).

link|flag

Your Answer

Get an OpenID
or

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