Skip to content
This repository has been archived by the owner on Jun 8, 2020. It is now read-only.

Latest commit

 

History

History
47 lines (30 loc) · 653 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 653 Bytes

ABANDONED


UML.js

Convert JSON to UML using Graphviz Dot.

Why?

A programmatic way to generate Class Diagrams

Example

Diagram generated by diagram.json

Sample diagram

TODO

  • More diagrams (like use case)
  • A "language"
  • Support for default values on properties
  • Option to export pretty dot files

How I think this language would be

Ruby way

class Animal
  - name : string

  + Animal()
  + setName(name : string) : void
  + getName() : string
end

class Mammal < Animal
end

class Fish < Animal
end

class Dolphin < Mammal, Fish
end