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

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

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
```