https://github.com/fgm/meteor-list-graph
Build a GraphViz dotfile from meteor list --tree
https://github.com/fgm/meteor-list-graph
graphviz graphviz-dot graphviz-dot-language meteor meteorjs
Last synced: 2 months ago
JSON representation
Build a GraphViz dotfile from meteor list --tree
- Host: GitHub
- URL: https://github.com/fgm/meteor-list-graph
- Owner: fgm
- License: mit
- Created: 2018-02-01T17:14:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T17:14:35.000Z (over 7 years ago)
- Last Synced: 2025-03-28T17:48:18.501Z (6 months ago)
- Topics: graphviz, graphviz-dot, graphviz-dot-language, meteor, meteorjs
- Language: PHP
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DOTify Meteor list --tree
## Purpose
Convert the output of the Meteor > 1.5.2 command to GraphViz DOT format.
## Usage
```bash
# In the Meteor application directory:
meteor list --tree > /tmp/app.txt# In the dotify directory:
composer install
php dotify.php /tmp/app.txt | dot -Tsvg > deps.svg
```## Running tests
In the dotify directory:
```
composer install
vendor/bin/phpunit src/tests
```