Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ron96g/dependency-graph
Small side project to display a pom dependency tree in gitlab as a network graph
https://github.com/ron96g/dependency-graph
dependecy-graph dependencies maven network-graph pom
Last synced: 20 days ago
JSON representation
Small side project to display a pom dependency tree in gitlab as a network graph
- Host: GitHub
- URL: https://github.com/ron96g/dependency-graph
- Owner: ron96G
- License: mit
- Created: 2023-08-11T11:11:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T01:17:25.000Z (about 1 year ago)
- Last Synced: 2024-10-30T03:11:31.229Z (2 months ago)
- Topics: dependecy-graph, dependencies, maven, network-graph, pom
- Language: TypeScript
- Homepage: https://ron96g.github.io/dependency-graph/
- Size: 1020 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dependency-graph
[GitHub-Pages](https://ron96g.github.io/dependency-graph/)
Small side project to display a pom dependency tree in gitlab as a network graph.
# Features
The GUI should have the most important features to navigate, select, filter and handle the data.## Import
- You can import projects from Gitlab Group and their POM structure.
They will then be parsed and are used as nodes and edges in the graph.- You can upload the exported graph and it will re-render.
## Filtering and Selection
Using the `Filter using Regex` button in the top left corner you can use enhanced filtering and selection of nodes and edges by
- version, e.g. `>=1.2.3` and other operations `"==", "!=", "=!", "=>", ">=", "<=", "=<", ">", "<"`
- name using regex, e.g. `.*(module-a|module-b|module-c).*`You can also select specific nodes or edges. These and all associated items will be highlighted.
- Green means that the nodes depends on the associated node
- Blue means that the node is a dependency of the associated node> All edges are directional and all items have mouseover descriptions
Using the other buttons you can further customize the selection.
## Export and Download
You can both export the json-data and also a picture of the graph. The exported data can then be uploaded again to re-render the graph.## Persistence
The graph is written to the local browser storage and thus persisted after exit of the site. This can be undone by clicking the `Reset` button.# TODOs
- Filter/Highlight nodes which have multiple versions of a module
- Popup notifications, warnings, errors
- Show summary to selected nodes