Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/w0rp/dhier
D Class Hierarchy Information Generation
https://github.com/w0rp/dhier
Last synced: about 1 month ago
JSON representation
D Class Hierarchy Information Generation
- Host: GitHub
- URL: https://github.com/w0rp/dhier
- Owner: w0rp
- License: bsd-2-clause
- Created: 2013-06-09T21:22:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-06T20:10:36.000Z (over 9 years ago)
- Last Synced: 2024-10-14T05:27:43.019Z (3 months ago)
- Language: D
- Size: 124 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# D Class and Module Introspection
This repository provides some functionality for generating visual
representations of class hierarchy information.## Running Examples
A class hierarchy example can be run by using one of the additional
configurations defined.```
dub run -q --config=class_example | dot -Tpng > class_example.png
```A module dependency example can be run by using another configuration.
```
dub run -q --config=module_example | dot -Tpng > module_example.png
```The library also supports graphs of modules, ranked by the number of times they are imported.
```
dub run -q --config=ranked_module_example | dot -Tpng > ranked_module_example.png
```