tools to generate UML diagrams for exisiting classes in javascript

diagrams, javascript, uml

Solution

Have a look at

James Shore online viewer. It is the closest UML class diagram I have met for Javascript. This link might also help you. It does in fact, bring another approach for representing a UML class diagram.

Problem

The project grows and there appears a necessity to visualize relations between the classes present in the project. Some of them are independent, some of them are inherited from others. I am looking for tool(s) to visualize these relations. I am aware that similar question was already asked here JavaScript libraries for drawing UML class diagramms, but as far as I can concern, no answer that suits my needs was given. I am aware of this List of Unified Modeling Language tools but they seem to give possibility to draw UML diagrams, while what I need is - a standalone tool - that generates UML diagrams from javascript code of my class definitions In Ruby, this tool is called RailRoady. If such a tool exits in JavaScript as well, it would be significant help.

Original source

Related problems