Popularity
6.6
Stable
Activity
1.4
Stable
559
12
74
Programming language: Go
License: GNU General Public License v3.0 or later
Latest version: v2.0.3
gographviz alternatives and similar packages
Based on the "blackfriday" category.
Alternatively, view gographviz alternatives based on common mentions on social networks and blogs.
-
bluemonday
bluemonday: a fast golang HTML sanitizer (inspired by the OWASP Java HTML Sanitizer) to scrub user generated content of XSS -
mxj
Decode / encode XML to/from map[string]interface{} (or JSON); extract values with dot-notation paths and wildcards. Replaces x2j and j2x packages. -
go-pkg-rss
DISCONTINUED. This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs. -
github_flavored_markdown
GitHub Flavored Markdown renderer with fenced code block highlighting, clickable header anchor links. -
go-pkg-xmlx
DISCONTINUED. Extension to the standard Go XML package. Maintains a node tree that allows forward/backwards browsing and exposes some simple single/multi-node search functions.
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
Promo
influxdata.com

Do you think we are missing an alternative of gographviz or a related project?
README
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
- The godoc includes some more examples.
- How to implement an anonymous subgraph
Installation
go get github.com/awalterschulze/gographviz
Build and Tests
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