I'm working on adapting existing solutions for my use in the meantime, but was curious to know if chart/graph library solutions for javascript are used only either from browser/web apps or via node.js but server side (via HTTP/REST requests).
For the node case, do most people not have a need or not prefer to have a pure CLI server-less implementation like a CLI tool/script?
Maybe I haven't searched enough, looking for not web-based javascript charting/graphing, I came across these:
https://github.com/ubear/hegel
https://github.com/Objectway/d3-server-renderer
but they expose an HTTP/REST server one needs to query to generate the graph outside of a browser. That's halfway there, and I'm currently trying to adapt those.
Is there not any similar solution that just spits out a chart/graph based on stdin or a (CSV) file you pass to it as a command line argument to a node script? The overhead of HTTP/REST seems unnecessary in cases that don't need distributed computing or scalability, like a local/internal deployment.