Is there a tool that can create a visual representation of my javascript code hierarchy

I am looking for a tool that can create a visual representation of my JavaScript code base. In particular, I would like to see:

  • A extends B continues to C
  • A has a member of type D
  • A is used in the xml file
  • Ideally, this tool would be a plugin for Aptana or Eclipse.

As a side note: any plugins that you can offer to facilitate trace simplification are really appreciated: I am familiar with Visual Studio "Go to Definition" , and really want it to be for my JavaScript.

Thanks in advance.

+4
source share
2 answers

This is the best of them so far, and this is the last: http://www.objectplayground.com/

+2
source

It sounds like you need UML diagrams for your Javascript code.
https://stackoverflow.com/questions/2802162/javascript-uml-diagrammer
http://objectmix.com/javascript/705504-class-diagrams-javascript.html
http://jsuml.gaertner-network.de/

Regarding side management, notes, dependency management, JavaScript dependency management

Perhaps an interesting structure for you, http://knockoutjs.com/

Sorry to just point you to other posts, but they seem to address your questions.

+1
source

All Articles