All Projects → bradleyjkemp → Memviz

bradleyjkemp / Memviz

Licence: mit
Visualize your Go data structures using graphviz

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Memviz

Xdot.py
Interactive viewer for graphs written in Graphviz's dot language.
Stars: ✭ 615 (-48.62%)
Mutual labels:  graphviz
Language Dot
Dot (Graphviz) package for Atom
Stars: ✭ 11 (-99.08%)
Mutual labels:  graphviz
Dockviz
Visualizing Docker data
Stars: ✭ 1,104 (-7.77%)
Mutual labels:  graphviz
Glance
A visual Haskell
Stars: ✭ 620 (-48.2%)
Mutual labels:  graphviz
D3 Graphviz
Graphviz DOT rendering and animated transitions using D3
Stars: ✭ 901 (-24.73%)
Mutual labels:  graphviz
Tfgraphviz
A visualization tool to show a TensorFlow's graph like TensorBoard
Stars: ✭ 40 (-96.66%)
Mutual labels:  graphviz
Graphqlviz
GraphQL Server schema visualizer
Stars: ✭ 591 (-50.63%)
Mutual labels:  graphviz
Knife Role Spaghetti
Knife plugin for Chef to draw dependency graphs for roles. Cut through the spaghetti with a knife.
Stars: ✭ 68 (-94.32%)
Mutual labels:  graphviz
D3 Dot Graph
This module provides D3js compatible library to parse and load files in graphviz DOT (.dot) (graph description language) format.
Stars: ✭ 23 (-98.08%)
Mutual labels:  graphviz
Hpcc Js Wasm
HPCC-Systems Web-Assembly (JavaScript)
Stars: ✭ 56 (-95.32%)
Mutual labels:  graphviz
Graphql Voyager
🛰️ Represent any GraphQL API as an interactive graph
Stars: ✭ 6,481 (+441.44%)
Mutual labels:  graphviz
Protobuf Uml Diagram
Create UML diagrams from Protobuf compiled .proto files using Python
Stars: ✭ 17 (-98.58%)
Mutual labels:  graphviz
Kubernetes Plantuml
Kubernetes diagrams using VS Code
Stars: ✭ 48 (-95.99%)
Mutual labels:  graphviz
Graphviz Java
Use graphviz with pure java
Stars: ✭ 618 (-48.37%)
Mutual labels:  graphviz
Oligrapher
JavaScript app for displaying annotated network graphs based on data from LittleSis
Stars: ✭ 62 (-94.82%)
Mutual labels:  graphviz
Scabbard
🗡 A tool to visualize Dagger 2 dependency graphs
Stars: ✭ 615 (-48.62%)
Mutual labels:  graphviz
Java9 Jigsaw Depvis
DepVis (Java 9 Jigsaw Dependency Visualizer)
Stars: ✭ 14 (-98.83%)
Mutual labels:  graphviz
Markdeck
presentations as code - author cool slide decks, text-only, offline-ready, collaborative
Stars: ✭ 1,159 (-3.17%)
Mutual labels:  graphviz
Graphviz Aws
AWS architecture the easy way
Stars: ✭ 63 (-94.74%)
Mutual labels:  graphviz
Asciidoctor Kroki
Asciidoctor.js extension to convert diagrams to images using Kroki!
Stars: ✭ 55 (-95.41%)
Mutual labels:  graphviz

memviz Build Status Coverage Status Go Report Card GoDoc

How would you rather debug a data structure?

"Pretty" printed Visual graph
(*test.fib)(0xc04204a5a0)({
 index: (int) 5,
 prev: (*test.fib)(0xc04204a580)({
  index: (int) 4,
  prev: (*test.fib)(0xc04204a560)({
   index: (int) 3,
   prev: (*test.fib)(0xc04204a540)({
    index: (int) 2,
    prev: (*test.fib)(0xc04204a520)({
     index: (int) 1,
     prev: (*test.fib)(0xc04204a500)({
      index: (int) 0,
      prev: (*test.fib)(),
      prevprev: (*test.fib)()
     }),
     prevprev: (*test.fib)()
    }),
    prevprev: (*test.fib)(0xc04204a500)({
     index: (int) 0,
     prev: (*test.fib)(),
     prevprev: (*test.fib)()
    })
   }),
   .
   .
   .

Usage

memviz takes a pointer to an arbitrary data structure and generates output that can be used to generate an easy to understand diagram using graphviz.

To generate a diagram, first you will need to install graphviz on your system following the instructions here.

Next, use memviz.Map(out, &data) to generate a graphviz dot file and then pipe the output into graphviz.

For examples of how to use memviz, see the code sample in the example folder and the tests in memviz_test.go.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].