pubviz 1.3.0 copy "pubviz: ^1.3.0" to clipboard
pubviz: ^1.3.0 copied to clipboard

outdatedDart 1 only

Visualize package dependencies in your Dart project

#pubviz

Visualize package dependencies in your Dart project #

  1. Make sure you run pub install or pub update in your target project directory.
  2. Run pubviz passing in the target project directory as the only argument
    • ./bin/pubviz.dart ~/pubviz/
  3. Notice the pretty output:
digraph G {

  path [label="path
0.6.5",shape=box,margin="0.25,0.15",group=primary];

  pubviz [label="pubviz
0.1.0-dev",fontsize=16,style=bold,shape=box,margin="0.25,0.15",group=primary];
  pubviz -> path [label=">=0.6.5",fontcolor=gray,penwidth=2];
  pubviz -> unmodifiable_collection [label=">=0.6.5",fontcolor=gray,penwidth=2];
  pubviz -> yaml [label=">=0.6.5",fontcolor=gray,penwidth=2];

  unmodifiable_collection [label="unmodifiable_collection
0.6.5",shape=box,margin="0.25,0.15",group=primary];

  yaml [label="yaml
0.6.5",shape=box,margin="0.25,0.15",group=primary];
}

Direct the ouput to a dot file: ./bin/pubviz.dart ~/some_dart_project/ > some_dot_file.dot and use GraphViz to generate a PNG.

sample

45
likes
0
pub points
49%
popularity

Publisher

verified publisherj832.com

Visualize package dependencies in your Dart project

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, collection, path, yaml

More

Packages that depend on pubviz