MaVe
MaVe

Reputation: 1725

Using dc.js with node.js

Is it possible to use dc.js with node.js, and if so how? I would like to provide an example, but it's hard to see how to start on this, and no working examples seem to be available online.

Upvotes: 2

Views: 685

Answers (1)

anmol koul
anmol koul

Reputation: 512

In short, yes. I have implemented a full fledged app using nodejs and dc while the document store was mongo. The nodejs server is used for fetching the data from mongo db and serving it as api. Dc.js then uses this data for rendering charts.

I will write a blog post about it and post it in a couple of days. In the meantime do let me know if you have any more queries.

Updated: Here is the link to the blog post.Do share if you find it useful. https://anmolkoul.wordpress.com/2015/06/05/interactive-data-visualization-using-d3-js-dc-js-nodejs-and-mongodb/

Upvotes: 3

Related Questions