https://github.com/bfncs/deps2dot
Build Graphviz dot files from package dependencies
https://github.com/bfncs/deps2dot
graphviz npm tool
Last synced: 22 days ago
JSON representation
Build Graphviz dot files from package dependencies
- Host: GitHub
- URL: https://github.com/bfncs/deps2dot
- Owner: bfncs
- Created: 2017-12-04T23:22:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-05T21:51:08.000Z (over 8 years ago)
- Last Synced: 2025-09-17T13:39:16.494Z (9 months ago)
- Topics: graphviz, npm, tool
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/deps2dot
- Size: 43.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deps2dot
[](https://travis-ci.org/bfncs/deps2dot)
CLI tool to build Graphviz dot files from package dependencies.
## Install
```bash
yarn global add deps2dot
```
## Use
```bash
# Render dotfile from dependencies in test/fixture
deps2dot test/fixture
# Render to png (depends on Graphviz)
deps2dot test/fixture | dot -Tpng > graph.png
# Render and display (depends on Graphviz & imagemagick)
deps2dot test/fixture | dot | display
```