Skip to content

awalterschulze/gographviz

Folders and files

NameName
Last commit message
Last commit date
Feb 28, 2023
Feb 28, 2023
Feb 28, 2023
Aug 13, 2018
Feb 28, 2023
Oct 1, 2016
Sep 27, 2018
Aug 10, 2016
Feb 28, 2023
Oct 4, 2020
Jun 10, 2017
Feb 28, 2023
Aug 10, 2020
Apr 10, 2017
Apr 10, 2017
Apr 10, 2017
Aug 13, 2018
Apr 10, 2017
Apr 10, 2017
Oct 4, 2020
May 10, 2021
Feb 28, 2023
Feb 28, 2023
Feb 28, 2023
Feb 28, 2023
Oct 13, 2018
Apr 10, 2017
May 28, 2017
Jun 10, 2017
Sep 27, 2018
Sep 27, 2018
Jun 1, 2022
Oct 13, 2018
Jun 1, 2022

Repository files navigation

Parses the Graphviz DOT language and creates an interface, in golang, with which to easily create new and manipulate existing graphs which can be written back to the DOT format.

This parser has been created using gocc.

Example (Parse and Edit)

graphAst, _ := gographviz.ParseString(`digraph G {}`)
graph := gographviz.NewGraph()
if err := gographviz.Analyse(graphAst, graph); err != nil {
    panic(err)
}
graph.AddNode("G", "a", nil)
graph.AddNode("G", "b", nil)
graph.AddEdge("a", "b", true, nil)
output := graph.String()

Documentation

Installation

go get github.com/awalterschulze/gographviz

Build and Tests

Build Status

Users

  • aptly - Debian repository management tool
  • gorgonia - A Library that helps facilitate machine learning in Go
  • imagemonkey - Let's create our own image dataset
  • depviz - GitHub dependency visualizer (auto-roadmap)
  • kustomize-graph - A tool to visualize Kustomize dependencies
  • inframap - Read your tfstate or HCL to generate a graph specific for each Terraform provider
  • Antrea Traceflow supports using Traceflow for network diagnosis for Antrea, a Kubernetes networking solution intended to be Kubernetes native

Mentions

Using Golang and GraphViz to Visualize Complex Grails Applications