An open API service indexing awesome lists of open source software.

https://github.com/reflechant/callgraph


https://github.com/reflechant/callgraph

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# callgraph

A work-in-progress tool to generate readable function callgraphs for Golang packages. It's not intended to be comprehensive, only to show dependencies between packages at exported functions level. It allows to assess architecture complexity and detect dependency antipatterns.

## Usage

```
go build && ./callgraph -d | dot -Tsvg -o graph.svg
```