Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active March 11, 2025 11:18
Show Gist options
  • Save Integralist/425a2a001c5bd51d06e10247739e7c13 to your computer and use it in GitHub Desktop.
Save Integralist/425a2a001c5bd51d06e10247739e7c13 to your computer and use it in GitHub Desktop.
Generate UML from Go Project Code #go #golang #uml #design #architecture #diagram
# install dependencies
brew install graphviz plantuml librsvg
# generate puml file for entire project
go run github.com/jfeliu007/goplantuml/cmd/goplantuml@latest -recursive ./ > Example.puml
# generate SVG from entire project
plantuml Example.puml -o "$pwd" -tsvg
# convert SVG into a PDF
rsvg-convert Example.svg -f pdf -o Example.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment