I'm trying to generate charts using c3js, which is a d3 library for easier charting.
I see that you can use plain d3 to generate charts on the server side using jsdom since there is an npm module for d3. This is the guide I was following for that process: http://www.gregjopa.com/2013/11/render-svg-charts-server-side-with-d3-js/
However, there is no npm module for nvd3 or c3js.
How can I use these libraries on the server side to generate charts for use on the client side?
npm install c3
I don't work with this library but I think this is what you are looking for. – Whipsaw