Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sivsushruth/mixgraph
An interactive dependency plotter for your Hex Package
https://github.com/sivsushruth/mixgraph
Last synced: 3 months ago
JSON representation
An interactive dependency plotter for your Hex Package
- Host: GitHub
- URL: https://github.com/sivsushruth/mixgraph
- Owner: sivsushruth
- Created: 2016-04-01T17:05:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-02T04:57:43.000Z (almost 9 years ago)
- Last Synced: 2024-10-29T08:45:09.662Z (3 months ago)
- Language: Elixir
- Size: 2.52 MB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - An interactive dependency plotter for your Hex Package. (Miscellaneous)
- fucking-awesome-elixir - mixgraph - An interactive dependency plotter for your Hex Package. (Miscellaneous)
- awesome-elixir - mixgraph - An interactive dependency plotter for your Hex Package. (Miscellaneous)
README
# Mixgraph
Create a dependency graph for any hex package published in hex.pm
As easy as `./mixgraph --package=addict`
![Image of interactive graph for addict](http://i.imgur.com/cfrWRMO.png)### Installation and Usage
View [the module](https://github.com/sivsushruth/mixgraph/blob/master/lib/mixgraph.ex) to see list of available function calls.
Steps to generate using an escript:
```
git clone https://github.com/sivsushruth/mixgraph
cd mixgraph
mix deps.get
mix escript.build
./mixgraph --package=
```
You can also do `Mixgraph.package_graph("")`
```
Mixgraph.package_graph("addict")
```The [package](https://hex.pm/packages/mixgraph) can also be installed as:
1. Add mixgraph to your list of dependencies in `mix.exs`:
def deps do
[{:mixgraph, "~> 0.0.1"}]
end2. Ensure mixgraph is started before your application:
def application do
[applications: [:mixgraph]]
end
### TODO
- [ ] Read dependencies from a local mix.exs
- [ ] Improve ease of installation as a command line tool### Help
* Clone repo and test the project
* Submit bug reports
* Provide suggestions for next release
* Help with completing the TODO