1.0.3 • Published 2 years ago
@aux4/graph-cycle-detector v1.0.3
graph-cycle-detector
A simple graph cycle detector.
Install
npm install --global @aux4/graph-cycle-detectorUsage
Simple Graph
graph.txt
A -> B
B -> C
C -> D
D -> E
D -> A
E -> F$ cat graph.txt | graph-cycle-detector
stateDiagram-v2
  C --> D
  D --> A
  B --> C
  A --> BIt will automatically open Mermaid Live Editor in your default browser.
Without Open Mermaid Live Editor
$ cat graph.txt | graph-cycle-detector --no-openTerraform
$ terraform graph | graph-cycle-detector --terraform1.0.3
2 years ago