Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tools to generate UML diagrams for exisiting classes in javascript [closed]

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

  1. a standalone tool
  2. 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.

like image 609
Andrew Avatar asked Feb 11 '14 08:02

Andrew


People also ask

How can I automatically generate a UML diagram from a Java project?

In the Project tool window, right-click a package for which you want to create a diagram and select Diagrams | Show Diagram Ctrl+Alt+Shift+U ). In the list that opens, select Java Class Diagram. IntelliJ IDEA generates a UML diagram for classes and their dependencies.

Does JavaScript use UML?

Provides support for UML class diagrams in IntelliJ-based IDEs for JavaScript and TypeScript languages.


1 Answers

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.

like image 122
Alain Avatar answered Oct 14 '22 04:10

Alain