ASCII graphing tools & libraries for cli-dazzler
Java script
javascript/npm solution in ASCII Chart
npm install asciichart
Go
A go based solution in ASCIIgraph
go install github.com/guptarohit/asciigraph/cmd/asciigraph@latest
asciigraph --help
# Feed it data points via stdin:
seq 1 72 | asciigraph -h 10 -c "plot data from stdin"
# or use Docker image:
seq 1 72 | docker run -i --rm ghcr.io/guptarohit/asciigraph -h 10 -c "plot data from stdin"
# plot of realtime ping data to google
ping -i.2 google.com | grep -oP '(?<=time=).*(?=ms)' --line-buffered | asciigraph -r -h 10 -w 40 -c "realtime plot data (google ping in ms) from stdin"