CLI
Render .dgmo files from the terminal.
Wire diagrams into Makefiles, build scripts, CI pipelines, or pre-commit hooks. Outputs SVG, PNG, or HTML — no GUI required, runs anywhere Node does.
# install
brew install diagrammo/dgmo/dgmo
# render to SVG
dgmo render arch.dgmo -o arch.svg
# pipe markup via stdin in a script
echo "sequence
A -> B: hi" | dgmo render -o out.png