Pure Nodejs Server Diagram Library

The most common solution for creating diagrams on a server with Node.js is to emulate the DOM and use the js client diagram library. for example: http://blog.stevenedouard.com/how-to-render-chart-js-charts-serverside/ or create an irregular process.

These solutions use mostly JSDOM and node canvas which have dependencies (like Cairo) are not always easy to replicate on different systems / OS (yes, Docker helps with this).

Is there any "clean" Nodejs solution / package to generate diagrams dynamically, save them in a thread that doesn't require native dependencies?

+3


source to share





All Articles