1.0.3 • Published 2 years ago

@aux4/graph-cycle-detector v1.0.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

graph-cycle-detector

A simple graph cycle detector.

Install

npm install --global @aux4/graph-cycle-detector

Usage

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

It will automatically open Mermaid Live Editor in your default browser.

Without Open Mermaid Live Editor

$ cat graph.txt | graph-cycle-detector --no-open

Terraform

$ terraform graph | graph-cycle-detector --terraform
1.0.3

2 years ago