Skip to content

Instantly share code, notes, and snippets.

@rodneyrehm
Last active November 7, 2022 09:11
Show Gist options
  • Save rodneyrehm/40e7946c0cff68a31cea to your computer and use it in GitHub Desktop.
Save rodneyrehm/40e7946c0cff68a31cea to your computer and use it in GitHub Desktop.
Diagrams for Documentation

some tools for diagrams in software documentation

Diagrams For Documentation

Obvious Choices

ASCII

UML

yUML (ruby on rails) can be hosted yourself, for 49 USD

Sequence Diagrams


Example Diagram


Dalek Class Dalek Sequence


@MrCoder
Copy link

MrCoder commented Oct 23, 2017

https://www.zenuml.com?ref=gist focuses on sequence and it comes with a chrome extension http://bit.ly/web-sequence-ws .Both the online version and the chrome extension work perfectly offline.

sample-30s 36ad6e1

@fgriberi
Copy link

An online app to create sequence diagram that I use is websequencediagram. It's very useful for simple diagrams.

websequencediagram

@Buket-12
Copy link

Hi, I need to help to star uml lesson. Can I help me this project.please shape Of urgently contact with me .
Please I took lesson star uml at University .But I need to help star uml .I need to obtain aproximately 5000 Code project .
my project will be date of delivery is may 13 finished. ,For this reason I have time is short .
Best wishes

@alexkarezin
Copy link

alexkarezin commented Aug 15, 2019

This site https://sourcespy.com generates diagrams based on (java) source code you provide. You can modify diagrams as needed and use hosted pictures in your documentation. Something like this:

@sbz
Copy link

sbz commented Nov 14, 2019

PlanUML project also allow you to build cool diagrams (Architecture, Sequence, Flow, etc..) using just a plain text format. You can use an online version here. Below an Architecture example with PlanUML definitions.

@startuml
rectangle "Services Flow Architecture" {
    rectangle "Services Examples" as Services {
      ["queue service server"] as qss
      ["queue service consumer"] as qsc
      ["queue worker"] as qw
      ["notifications"] as notify

      qss -[hidden]down-> qsc
      qsc -[hidden]down-> qw
      qw -[hidden]down-> notify
    }

    rectangle "AWS ActiveMQ" {
        queue "events queue" as eq
        queue "events topic" as et
    }
    qss -> eq
    qsc -> eq
    notify -> eq
    qw -> eq

    eq -up-> et
}

@enduml

I have attached a sample below.

image

@z0r1k
Copy link

z0r1k commented Feb 12, 2020

@pirancaci
Copy link

I've been playing with Gliffy, simple but powerful enough for my needs.

Hello
I am working on asciidoctor-gradle-plugin and want to find a way how to edit existing or create new diagrams within asciidoctor in gradle. Is there a way to do this? Thank you in advance :D

@SamuelMarks
Copy link

@philip-gai
Copy link

You can also use diagrams.net (draw.io) diagrams in your repository. Check it out

@djmetzle
Copy link

djmetzle commented Mar 22, 2022

Mermaid is Github native now.

  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;

I'd forgotten the name, and found this Gist organically via Google. Seems like Mermaid is definitely worth mentioning here in this context. 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment